Let's say I've textarea field in cforms called "Message".
Then I enter this value and sent it.
line1
line2
This is the content of the received message:
Message: line 1 line 2
You see, the problem is the linefeed does not exist in the message.
The correct result should be like this:
Message: line 1
line 2
For the time being, the solution that I use is by surrounding variable $_POST[$current_field] with nl2br on the statement in line 213 in lib_nonajax.php: