想知道是否有任何函数/类/等..来帮助解决电子邮件的 990 个字符限制,因为我的 HTML 正因此受到影响。
问题:(来源)
请注意,邮件服务器对包含在电子邮件消息中的每一行有 990 个字符的限制。如果发送的电子邮件包含超过 990 个字符的行,这些行将被附加的行结束字符细分,这可能会导致电子邮件损坏,尤其是 HTML 内容。为防止发生这种情况,请在电子邮件中的适当位置添加您自己的行尾字符,以确保行的长度不超过 990 个字符。
其他人似乎有这个问题?你是怎么解决这个问题的?
听起来我需要找一个好地方来拆分我的 HTML 并手动添加换行符,呃...
更新:
它是多行的指法数据。那么我需要添加一个 \n 或<br />
某处吗?
更新 #2:添加 MIME 类型代码
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1\r\n";
$headers .= "Content-Transfer-Encoding: quoted-printable\r\n"; // added this, but still no results
$headers .= "From: from@email.com\r\n";
这是我调用函数的方式:
我最初是如何称呼的:
return $html;
我尝试了什么:
return imap_8bit($html); // not working, nothing is captured in the error log
和
return imap_binary($html); // not working, nothing is captured in the error log
更新#3(添加邮件功能)
try {
mail(
'to@email.com',
'Subject of Email',
$html,
$headers
);
} catch (Exception $e) {
echo ("ERROR: Email NOT sent, Exception: ".$e->getMessage());
}
示例 HTML(这是 HTML 电子邮件的消息)(这也在属于 XMLRPC 服务的类中)
private function getHTML() {
$html = '<html><head><title>Title</title></head><body>';
$html .= '<table>';
$html .= '<tr><td>many many rows like this</td></tr>';
$html .= '<tr><td>many many rows like this</td></tr>';
$html .= '<tr><td>many many rows like this</td></tr>';
$html .= '<tr><td>many many rows like this</td></tr>';
$html .= '<tr><td>many many rows like this</td></tr>';
$html .= '</table>';
$html .= '</body>';
$html .= '</html>';
return $html;
//return imap_8bit($html); // not working, nothing is captured in the error log
//return imap_binary($html); // not working, nothing is captured in the error log
// Both of these return the XMLRPC Fault Exception: 651 Failed to parse response
}
Fault Exception: 651 Failed to parse response 基本上不喜欢格式或返回数据的方式。