|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-02 13:50 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 02:00:01 2025 UTC |
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); ?>