* Thus wrote Jonathan Villa ([EMAIL PROTECTED]):
> Ok, don't know what I am doing wrong here...but for some reason I cannot
> get new line or carriage return characters to work correctly...
> 
> For example, 
> 
> When I send some emails, I try
> 
> $msg .= "From: [EMAIL PROTECTED]
>       Content-Type: text/plain\r\n"
> 

$msg .= "From: [EMAIL PROTECTED]: text/plain\r\n";

Your mail Program is seeing:
  From: [EMAIL PROTECTED]

  Content-Type: text/plain


The empty line tells the program that it has reached the end of
headers.


Curt
-- 
"My PHP key is worn out"

  PHP List stats since 1997: 
    http://zirzow.dyndns.org/html/mlists/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to