Nope, using str_replace doesn't change anything. The funny thing is that when i look at the email as RAW source than it looks as it suppose to look but in normal view it's one line.
Is anything wrong with this?
$mailfrom = 'annoucements@blah.org';
$mailsubject = $POST["txtSubject"];
$mailtxt = str_replace("\r","\n",$POST["txtBody"]);
$mailbody = "$mailtxt <br><br><br>
<FONT COLOR = BLUE>--- Do Not Respond To This email Address As This Mailbox Is Not Being Monitored ---</FONT COLOR>";
$mailsto = $list;
$mailto = implode(",",$mailsto);
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $mailfrom\r\n";
$header .= "Content-Transfer-Encoding: 8bit\r\n";