嗨,新朋友,很高兴认识你,欢迎来到我的博客。
文章标签: phpmailer

phpmailer发邮件中文乱码的问题

$mail = new PHPMailer(); $mail->CharSet='UTF-8';//注意大小写

phpmailer发送邮件乱码

这里因为发送邮件是您没有指定您所要求的编码。 $mail->CharSet = "gb2312"; // 这里指定字符集!如果是utf-8则将gb2312修改为utf-8 $mail->Encoding = "base64";