How do I specify a cariage return with php mail() in plaintext mail?
Thanks!
Charlie
\r\n
I already tried that. Heres' what I did.
$message .= 'Email Address: '.$txtEmailAddrs.' Website: '.$txtWebsiteAddrs.'\r\n';
And after this line, there is no line break at all. Instead, the \r\n is showing along with the message.
String constants in single quotes ' ' are not evaluated by PHP. Try using " " instead.
Bye, MeyerK
Okay, I'll try that. Thank you very much for your help.
charlie