I want to send an email to a string called $message.
The $message string is over multiple lines.
I have tried...
$message="first line second line third line last line";
...but that does not seem to work.
Any suggestions?
Thanks,
Jon
$message="first line \n second line \n third \nline \n last line";
You need to break up every line with a \n it tells you that in the mail() function on PHP.net... Lata!
Chad R. Smith Broken Formula President www.brokenformula.com