Php html e-posta gönderme sorunları

3 Cevap php

Ben bir düzen ve görüntüleri olduğunu kendime bir e-posta göndermek için çalışıyorum. Ben yanlış ne yapıyorum?

<?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 Cevap

Sen phpmailer yerine PHP'nin mail () Fonksiyonu kullanmalısınız. O kolayca HTML-mail göndermek için izin verir.

Bunun yanında size e-posta ile uyumlu olması için validate HTML-Code deneyebilirsiniz.

Best wishes, Fabian

Sen kodundaki bir hata var:

WRONG

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

RIGHT

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

Daha önce başka bir yerde $headers set sürece .= PHP, içinde ayrıştırma hatası atar.

Ayrıca ile test e-posta istemcisi bağlı olabilir. http://www.email-standards.org/ e-posta istemcisi destekleyen ne kontrol etmek için kontrol ettiğinizden emin olun.

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

Kolay vb başlıklar, biçimleri, MIME ile ilgili olur.