I hope someone can help me with a little bit of understanding about PHP line breaks in PHP and MIME mail.
If I send my mail body via PHP mail i.e.
body = "this is the first part of the text \n\n";
body. = "this is the 2nd part of the text \n\n";
The text email received is punchuated with the line breaks, i.e the received email looks like
this is the first part of the text
this is the 2nd part of the text
But when I send the same PHP data, via MIME in a PHP script, the receipt email looks like this:
this is the first part of the text this is the 2nd part of the text
i.e. the \n line breaks have been removed.
Has anyone got any idea's of how to send the line breaks without resorting to recompiling the whole thing for HTML?
Many thanks