3

PHP の機能を使用して HMTL メールを送信しようとしてmail()いますが、メールの一部が壊れていることに気付きました。原文をgmailで読んだところ、メッセージ本文の行がすべて同じ長さで、HTMLタグが不自然なところで切れていることがわかりました。

私のヘッダーは、7 ビットの html とプレーンの境界を持つマルチパートです。私が送信しているものの例は次のとおりです。

<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\"/>"

これがしばらく続きます。いくら入れるか不明。

4

1 に答える 1

0

私は過去にその問題を抱えていました。原因はわかりませんが、すべてを次のように置き換えることで解決しまし>>\r\n

$message = str_replace(">", ">\r\n", $message);
于 2013-11-03T21:21:38.147 に答える