I am having troubles getting line breaks (\n) into a plain text email...I tried carrige returns (\r) and couldn't get them to work either. When I get the email as plain text in Outlook I get everything lumped on one line. Below is the code:
<PRE>
$email_body = "some text\n more text\n even more text\n"
$recipient .= "$to_name <$to_email>" ; / recipients /
$subject = "subject"; / subject /
$message .= "$email_body"; / message /
$headers .= "From: $from_name <$from_email>\n";
$headers .= "X-Sender: <$from_email>\n";
$headers .= "X-Mailer: PHP\n";
$headers .= "Return-Path: <$from_email>\n";
$headers .= "bcc: $from_name <$from_email>\n";
$headers .= "Content-type: text/plain\n";
mail($recipient, $subject, $message, $headers); / mail it /
</PRE>