I'm trying to figure out how to set the sending address when sending e-mail from PHP, but it doesn't seem like I'm having much success..

When I look in the mail queue, I always see '[EMAIL PROTECTED]' as the origin (the web server user).

In my sending routine I set headers like this:
$hdrs = array(
'From'    => $MAILFROM,
'Subject' => iconv(strtoupper(CHARSET), "ISO-8859-1", $subject),
'Reply-To' => $MAILFROM,
'Date' => date("r"),
'Return-Path' => '[EMAIL PROTECTED]'
);

Oh, the mail sent doesn't use the Return-Path I set, it's still set as [EMAIL PROTECTED]
What else can I do, and what have I missed?

Anders

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

Reply via email to