phpmailer 发送中文的注意

require dirname(__FILE__).’/PHPMailerAutoload.php’;
$mail = new PHPMailer;
$mail->CharSet=”utf-8″;

原因是:class.phpmailer.php 里面 有  $is_utf8 = (strtolower($this->CharSet) == ‘utf-8’); 判断是否是utf-8编码的邮件

发表评论

邮箱地址不会被公开。 必填项已用*标注