ID: 15957 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *Mail Related Operating System: RedHat Linux PHP Version: 4.1.2 New Comment:
Funny, I have the same problem. However, in my case, I only see the headers in the body of my emails when I am sending email to a domain residing on the same server as where the mail is being sent from. When i sent mail using PHP to a remote address the headers are fine. This is in 4.2.2... Previous Comments: ------------------------------------------------------------------------ [2002-03-08 08:27:45] [EMAIL PROTECTED] Never mind! ------------------------------------------------------------------------ [2002-03-08 08:21:51] [EMAIL PROTECTED] Backtrace from what? This is a support question and best asked on [EMAIL PROTECTED] until I missed some very important information you didn't mentioned at this point ... ? Bogusifying. ------------------------------------------------------------------------ [2002-03-08 08:15:23] [EMAIL PROTECTED] Unfortunately I've got no gdb backtrace. ------------------------------------------------------------------------ [2002-03-08 08:13:28] [EMAIL PROTECTED] If I use the mail function of PHP 4.1.2 and I use the following code: ========================================================== <? /* recipients */ $to = "Richard <[EMAIL PROTECTED]>"; //note the comma /* subject */ $subject = "HTML Testmail "; /* message */ $message = ' <html> <head> <title>HTML Testmail</title> </head> <body> <p>HTML Testmail</p> <table> <tr> <th>ID</th><th>Voornaam</th><th>Achternaam</th><th>Year</th> </tr> <tr> <td>1</td><td>Richard</td><td>Sterken</td><td>1970</td> <td>2</td><td>Danny</td><td>Dam Wichers</td><td>1973</td> </tr> </table> </body> </html> '; /* To send HTML mail, you can set the Content-type header. */ $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; /* additional headers */ $headers .= "From: Mailer Daemon <[EMAIL PROTECTED]>\r\n"; /* and now mail it */ echo mail($to, $subject, $message, $headers); ?> ========================================================== I recieve a mail like this: ========================================================== Content-type: text/html; charset=iso-8859-1 From: Mailer Daemon <[EMAIL PROTECTED]> <html> <head> <title>HTML Testmail</title> </head> <body> <p>HTML Testmail</p> <table> <tr> <th>ID</th><th>Voornaam</th><th>Achternaam</th><th>Year</th> </tr> <tr> <td>1</td><td>Richard</td><td>Sterken</td><td>1970</td> <td>2</td><td>Danny</td><td>Dam Wichers</td><td>1973</td> </tr> </table> </body> </html> ========================================================== ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=15957&edit=1