下面是一段摘自W3school关于php mail函数的栗子,经过测试发现两个问题。
<?php $to = "[email protected], [email protected]"; $subject = "HTML email"; $message = " <html> <head> <title>HTML email</title> </head> <body> <p>This email contains HTML Tags!</p> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>John</td> <td>Doe</td> </tr> </table> </body> </html> "; // 当发送 HTML 电子邮件时,请始终设置 content-type $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; // 更多报头 $headers .= ‘From: <[email protected]>‘ . "\r\n"; $headers .= ‘Cc: [email protected]‘ . "\r\n"; mail($to,$subject,$message,$headers); ?>
首先是 编码问题。 测试发现中文乱码,改为 utf-8即可
第二是回车换行符的问题,经过测试发现,headers信息并没有生效,而是被原样输出了。经过谷歌找到原因将回车换行改为PHP_EOL
// 当发送 HTML 电子邮件时,请始终设置 content-type $headers = "MIME-Version: 1.0" . PHP_EOL; $headers .= "Content-type:text/html;charset=iso-8859-1" . PHP_EOL; // 更多报头 $headers .= ‘From: <[email protected]>‘ . PHP_EOL; $headers .= ‘Cc: [email protected]‘ . PHP_EOL;
其实出现这个问题是因为windows下回车换行和linux下不一致导致的,PHP有内置解决方案。这样就搞定啦~
时间: 2024-11-03 21:23:45