Hi David,

On Thu, January 27, 2005 9:09 pm, David Edwards said:
> Hi,
>
> $headers .= "MIME-Version: 1.0\n";
> $headers .= "Content-type: text/plain; charset=iso-8859-1\n";
> $headers .= "X-Priority: 1\n";
> $headers .= "X-MSMail-Priority: High\n";
> $headers .= "X-Mailer: php\n";
> $headers .= "From: $emailfrom\n";

I believe the headers have to end with a blank line? If I remeber
correctly, the last line in the $headers should have two new lines like

$headers .= "From: $emailfrom\n\n";

HTH
-R'twick

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

Reply via email to