1

如何正确设置多部分电子邮件的文本编码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);
}
4

1 回答 1

1

尝试这样的标题:

$headers['Content-Type'] = "text/plain; charset=\"UTF-8\"";
$headers['Content-Transfer-Encoding'] = "8bit";

参考: http: //pear.php.net/manual/en/package.mail.mail.factory.php#13207

作为旁注,Pear 是“可重用 PHP 组件的框架和分发系统”。Mail 组件只是 Pear 提供的众多组件之一。

于 2013-04-09T19:41:54.013 回答