I have a very simple form with a textarea.
I can get the textarea's value with PHP by:
<?php $val = $_POST['txt']; ?>
My question is, that, how could I preserve the newline separators when I'm processing the text?
I intend to send a Plain text email, NOT a HTML email, this is why I need PHP to send the email in the exact same format, which the user types in the textarea.
How is it possible?
` – Ian Jul 17 '14 at 14:05