HTML email message condensed

tribidroer

New Member
The query below sends out an email. It works okay, but the message is condensed into basically one long paragraph. I would like a break where I have the \[code\]</br>\[/code\] tags below. However, the \[code\]</br>\[/code\] tags are being ignored. Any idea how I could put breaks there?Thanks in advance,John\[code\] $message1 = " Someone made the following comment on your submission $submission: </br> $comment Please click the link below to see the comment in context. </br> $link1 ";$headers = 'MIME-Version: 1.0' . "\r\n";$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $queryem = mail($mailaddress, "Someone has commented on your submission $submission.", $message1, $headers);\[/code\]
 
Back
Top