ID: 35013
Updated by: [EMAIL PROTECTED]
Reported By: php-louis at steelbytes dot com
-Status: Bogus
+Status: Closed
Bug Type: Mail related
Operating System: win2003
PHP Version: 5CVS-2005-10-31 (snap)
New Comment:
This should be fixed in CVS now.
Previous Comments:
------------------------------------------------------------------------
[2005-11-01 11:35:27] [EMAIL PROTECTED]
See bug #28038, this is just one more case related to that.
------------------------------------------------------------------------
[2005-10-29 03:46:45] php-louis at steelbytes dot com
Description:
------------
when mail() is passing the headers to get the sender's email address
and the headers are similar to the following:
To: blah
From: [EMAIL PROTECTED]
AnotherHeader: value
it retrieves " [EMAIL PROTECTED]" as the senders email, instead of
"[EMAIL PROTECTED]". this is a problem when sending email to yahoo, as
the MAIL FROM smtp command that mail() generates looks like the
following:
MAIL FROM:< [EMAIL PROTECTED]>
instead of
MAIL FROM:<[EMAIL PROTECTED]>
or
MAIL FROM: <[EMAIL PROTECTED]>
and yahoo rejects.
Reproduce code:
---------------
mail('[EMAIL PROTECTED]','test subject','test body','From:
[EMAIL PROTECTED]');
Expected result:
----------------
yahoo rejects with the following
501 Syntax error in parameters or arguments
Actual result:
--------------
n/a
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=35013&edit=1