在php中发送html电子邮件的问题

时间:2009-12-05 00:45:15

标签: php html email

我正在尝试向自己发送一封包含布局和图片的电子邮件。我做错了什么?

<?php
 $message = $_POST['message'];
 $emailsubject = 'site.com';
 $webMaster = 'email@site.com';

 $body = "
 <html>
 <body bgcolor=\"e7e7e7\">
 <style type=\"text/css\">
#body {margin: auto;border: 0;padding: 0;font-family: Georgia, 'Times New Roman',      Times, serif;font-size: 12px;}
#emailHeader {width: 500px;height: 131px;background:      url(http://www.site.com/images/image.gif) no-repeat;}
#emailContent {width: 500px;background: url(http://www.site.com/images/image2.gif) repeat-y;text-align: left;padding: 0 33px 0 6px;}
#emailFooter {width: 500px;height: 34px;background:      url(http://www.site.com/images/image3.gif) no-repeat;}
 </style>
 <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
 <tr>
 <td valign=\"top\" align=\"center\">
 <table width=\"500\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
 <tr>
 <td id=\"emailHeader\"></td>
 </tr>
 <tr>
 <td id=\"emailContent\">
 content $message
 </td>
 </tr>
 <tr>
 <td id=\"emailFooter\"></td>
 </tr>
 </table>
 </td>
 </tr>
 </table>
 </body>
 </html>"
 $headers .= "Content-type: text/html\r\n";
 $success = mail($webMaster, $emailsubject, $body, $headers);

 if ($success) {
    echo "Your message was sent.";
} 
 else{ 
    echo "There was a error.";
}
?>

3 个答案:

答案 0 :(得分:3)

您应该使用phpmailer而不是PHP的mail() - 函数。它允许您轻松发送HTML-Mails。

除此之外,您可以尝试validate您的HTML代码与电子邮件兼容。

祝福, 费边

答案 1 :(得分:1)

您的代码中有错误:

<强> WRONG

$headers .= "Content-type: text/html\r\n";

从右

$headers = "Content-type: text/html\r\n";

除非您之前在其他地方设置了.=,否则$headers会在PHP中抛出一个解析错误。

它还可能取决于您正在测试的电子邮件客户端。请务必查看http://www.email-standards.org/以查看您的电子邮件客户端支持的内容。

答案 2 :(得分:0)

您可能还想查看Zend Framework中的Zend_Mail: http://framework.zend.com/manual/en/zend.mail.html

可以更轻松地处理标题,格式,MIME等。