开发者

Problems sending html email in php

I'm trying to send an email to myself that has a layout and images. What I'm I doing wrong?

<?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: 5开发者_运维百科00px;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.";
}
?>


You should use phpmailer instead of PHP's mail()-Function. It allows you to easily send HTML-Mails.

Besides that you can try to validate your HTML-Code to be compatible for emailing.

Best wishes, Fabian


You have an error in your code:

WRONG

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

RIGHT

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

The .= throws a parse error in PHP unless you previously set $headers somewhere else.

It also may depend on the email client you are testing with. Be sure to check out http://www.email-standards.org/ to check what your email client supports.


You may also want to look into Zend_Mail from Zend Framework: http://framework.zend.com/manual/en/zend.mail.html

Would make dealing with headers, formats, MIME, etc. easier.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜