* Thus wrote Matt MacLeod ([EMAIL PROTECTED]):
> ...
> 
> $headers .= "Reply-To: [EMAIL PROTECTED]";
> $nonhtml = strip_tags($emailsend);
> // This is the important part!
> // This content type identifies the content of the message.
> // The boundary delimits the plain text and html sections.
> // The value of the boundary can be anything - you can even use the 
> same one we used here
> $headers .= "Content-Type: multipart/alternative; 
> boundary=\"----=_NextPart_000_002C_01BFABBF.4A7D6BA0\"\n\n";

You've just signified end of headers with the \n\n perhaps you
meant \r\n.

> $headers .= "X-Priority: 1\r\n";
> $headers .= "X-MSMail-Priority: High\r\n";
> $headers .= "X-Mailer: PHP/" . phpversion()."\r\n";
> $headers .= "X-Sender: [EMAIL PROTECTED]";
> $headers .= "Return-Path: [EMAIL PROTECTED]";

Adding Return-Path: is useless since it will be ignored.



Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

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

Reply via email to