On Wed, 20 Mar 2002, Jennifer wrote:
> $to="[EMAIL PROTECTED]";
> $from="[EMAIL PROTECTED]";
> $subject="Hi";
> $message="this message";
> mail($to, $subject, $message, "$from\r\nX-Priority: 1 (Highest)");

By the way, your From line is also mangled.

You should have:

$from = "From: [EMAIL PROTECTED]";

That's going in the additional headers section, in which you need to 
explicitly label the fields, so you need the "From:" part.

miguel


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

Reply via email to