如何正确设置多部分电子邮件的文本编码Pear
?
我看过很多例子,我相信我设置正确。但是,在发送电子邮件时,charset=ISO-8859-1
即使我指定了UTF-8
.
当我决定发送包含文本和 HTML 部分的多部分电子邮件时,这个问题就开始了。我尝试设置内容类型,但似乎没有什么不同。
下面是我正在使用的代码。任何建议表示赞赏。
function send_html_email($to, $from, $subject, $html, $plainTxt ) {
require_once "Mail.php";
require_once "Mail/mime.php";
$host = "ssl://secure.xxx.com";
$port = "xxx";
$username = "xxx";
$password = "xxx";
$headers = array (
'charset' => 'UTF-8',
'From' => $from,
'To' => $to,
'Subject' => $subject,
'MIME-Version' => "1.0"
);
$crlf = "\n";
$mime = new Mail_mime($crlf);
$mime->setHTMLBody($html);
$mime->setTXTBody($plainTxt);
$body = $mime->get();
$headers = $mime->headers($headers);
$smtp = Mail::factory('smtp', array ('host' => $host,
'port' => $port,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
}