php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14944 Access Violation with Cc header
Submitted: 2002-01-09 04:24 UTC Modified: 2002-06-02 13:50 UTC
Votes:5
Avg. Score:4.6 ± 0.8
Reproduced:5 of 5 (100.0%)
Same Version:4 (80.0%)
Same OS:3 (60.0%)
From: bart at intulogic dot nl Assigned:
Status: Closed Package: Mail related
PHP Version: 4.1.0 OS: Windows 2000 Professional
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: bart at intulogic dot nl
New email:
PHP Version: OS:

 

 [2002-01-09 04:24 UTC] bart at intulogic dot nl
While parsing the script displayed below, this error appears: 'PHP has encountered an Access Violation at 01130A6E'.
This only happens when using the Cc header, in this script.
The IIS server it is running on will not respond after the PHP error. Rebooting is the only way to restart the service.

PHP script causing error:

<?
/*
mail("bart@intulogic.nl", "My Subject", "Line 1\nLine 2\nLine 3",
		 "From: webmaster@$SERVER_NAME\r\n"
		."Reply-To: webmaster@$SERVER_NAME\r\n"
		."X-Mailer: PHP/" . phpversion());
*/

/* recipients */
$to  = "Mary <bart@intulogic.nl>" . ", " ; //note the comma
$to .= "Kelly <bart@intulogic.nl>";

/* subject */
$subject = "Birthday Reminders for August";

/* message */
$message = '
<html>
<head>
 <title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
 <tr>
  <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
 </tr>
 <tr>
  <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
 </tr>
 <tr>
  <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
 </tr>
</table>
</body>
</html>
';

/* To send HTML mail, you can set the Content-type header. */
$headers  = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";

/* additional headers */
$headers .= "From: Intranet <webmaster@$SERVER_NAME>\n";
$headers .= "Reply-To: Bart <bart@intulogic.nl>\n";

$headers .= "Cc: bart@intulogic.nl\n";

/* and now mail it */
mail("bart@intulogic.nl", $subject, $message, $headers);

?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-02 13:50 UTC] mfischer@php.net
This bug has been fixed in CVS. You can grab a snapshot of the
CVS version at http://snaps.php.net/. In case this was a documentation 
problem, the fix will show up soon at http://www.php.net/manual/.
In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites.
Thank you for the report, and for helping us make PHP better.

You can try a snapshot from http://snaps.php.net/win32/php4-win32-latest.zip
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 00:01:27 2024 UTC