ID:               24761
 Updated by:       [EMAIL PROTECTED]
 Reported By:      prashant at travelingnepal dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Mail related
 Operating System: Windows 2002 Server
 PHP Version:      4.3.2
 New Comment:

What is the name & version of the SMTP server you are using?

Does the problem still occur if you remove the space between the "bcc:"
and the e-mail address?


Previous Comments:
------------------------------------------------------------------------

[2003-07-22 19:52:04] prashant at travelingnepal dot com

Description:
------------
Dear Sir,
I just have installed Php 4.3.2 and when i try to use the mail function
it says the following error:

Warning: mail(): SMTP server response: 501 Syntax error in parameters
in [File Directory] on line [Line Number]

Reproduce code:
---------------
<?php
$recipient="[EMAIL PROTECTED]";
$subject="Test Mail" ;

$message.="Test Mail\n";

$headers .= "From: <[EMAIL PROTECTED]>\n";
$headers .= "X-Sender: <[EMAIL PROTECTED]>\n"; 
$headers .= "Return-Path: <$email>\n";
$headers .= "bcc: [EMAIL PROTECTED]";

$success=mail($recipient,$subject,$message,$headers);
unset($subject);
unset($message);
unset($header);

if ($success) { echo"Your Message has been send";
}
?>

Expected result:
----------------
To send me a mail at [EMAIL PROTECTED] from [EMAIL PROTECTED] and also bcc to
[EMAIL PROTECTED] and says "Your Message has been send".

Actual result:
--------------
Warning: mail(): SMTP server response: 501 Syntax error in parameters
in [File Directory] on line [Line Number]


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=24761&edit=1

Reply via email to