From:             [EMAIL PROTECTED]
Operating system: Windows NT 4.0 (SP6)
PHP version:      4.0.6
PHP Bug Type:     Reproducible crash
Bug description:  Access Violation when using "Cc:" in mail()

Configuration: PHP 4.0.6 on a Windows NT System with IIS 3

Calling mail() with an "Cc:"-headerline in the "additional_headers" (4th)
argument
results in an crash of the php module and the webserver. If the
"Cc:"-string is
commented out, everything works fine.

Error: "PHP has encountered an Access Violation at 0177B474"

Script:

<?php
setlocale ("LC_TIME", "");

$recp = "[EMAIL PROTECTED]";
$subject = "Test";
$body = "Test\n";

$EMail="[EMAIL PROTECTED]";

if ( mail($recp . $cc, $subject, $body , "Cc: [EMAIL PROTECTED]\n" ) )
{
  print "Mail ok!";
} else {
  print "No mail today!";
};
?>

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


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to