Can somebody please help me with this mail script.
I\'m simply trying to send an html email and part of the message is from a user textarea, which puts in \\r\\n.>
This string contains embedded newlines so you'll end up with a few unwanted s.
$message = nl2br(" $message_var_1 ");
You can:
$message = "" . nl2br($message_var_1) . "";
Or, its much easier to use a
tag: $message = "$message_var_1";
$message = "$message_var_1";
$message_var_1