电子邮件添加换行符?

时间:2013-11-03 21:01:06

标签: php html-email

我正在尝试使用php的mail()函数发送HMTL电子邮件,并注意到电子邮件中的某些内容已被破坏。我从阅读gmail中的原始文件中发现,邮件正文中的行长度都相同,这会在不方便的地方剪切HTML标记。

我的标题是多部分,带有html和plain之间的边界,带有7位。我发送的一个例子是:

<a href="site.com/unsub">Unsubscribe</a>

但由于它的位置,消息将其分割为

<a href="site.co
m/ubsub">unsubscribe</a>

打破超链接。有什么东西我缺少或没有得到?我已经看到了使用像swiftmailer这样的邮件库 - 我可以使用它 - 但我想真正理解这种行为。

编辑:

如何调用mail()

$headers = 'From: Me <me@site.com>' . "\r\n" . 'MIME-Version: 1.0'
$headers .= "\r\n" . "Content-Type: multipart/mixed; charset=ISO-8859-1; boundary=$boundary"
$subject = 'subject';
$html_message = '--' . $boundary . "\r\n";
$html_message .= 'Content-Type: text/html; charset=ISO-8859-1' . "\r\n";
$html_message .= 'Content-Transfer-Encoding: 7bit' . "\r\n" . "\r\n";
$html_message .= $message . "\r\n";
// plaintext added similarly, with different content-type. Omitted.
mail($to,$subject,$html_message, $headers);

编辑#2:

扩展$message

$message = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\" /><title>"
$message .= "Page Title</title></head><body style=\"margin: 0; padding: 0; font-family: open \'Open Sans\', \'Open Sans Bold\';\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" ><tr><td><table align=\"center\"  bgcolor=\"#FFFFFF\" border=\"0\"cellpadding=\"0\" cellspacing=\"0\" width=\"600\"><tr><td align=\"right\" style=\"padding: 20px 20px 20px 20px;\"> <font color=\"#EA5D0F\">[</font> <a href=\"http://SITE.com\" style=\"color:#000001; text-decoration: none !important;\">Sign In </a><font color=\"#EA5D0F\">][</font> <a href=\"http://about.SITE.com\" style=\"color:#000001; text-decoration: none !important;\">About </a><font color=\"#EA5D0F\">][</font> <a href=\"http:/SITE.com/search\" style=\"color:#000001; text-decoration: none !important;\">Search</a><font color=\"#EA5D0F\">]</font></td></tr><tr><td bgcolor=\"#FFFFFF\" align=\"center\" style=\"padding: 40px 0px 0px 0px;\"><img src=\"http://about.SITE.com/wp-content/uploads/2013/08/SITE.plain_.png\" alt=\"SITE Logo\" width=\"300\" style=\"display: block;\" /></td></tr><tr><td style=\"padding: 10px 20px 20px 20px;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" ><tr><td bgcolor=\"#FFFFFF\" style=\"padding: 30px 10px 10px 10px; text-align:center; font-size: 1.2em; font-weight:bold;\"> <hr color=\"#EA5D0F\"/>"

这种情况持续了很长一段时间。不知道要包括多少。

1 个答案:

答案 0 :(得分:0)

我过去确实遇到过这个问题。虽然我不知道原因是什么,但通过>替换>\r\n来解决问题:

$message = str_replace(">", ">\r\n", $message);