共计 1253 个字符,预计需要花费 4 分钟才能阅读完成。
cmhello 主题 的右边有一个“反馈与建议”功能,可以直接发送访客的建议信息到管理员的邮箱,但是邮件主题(subject)只要有中文就显示乱码,最近在升级这个主题,当然也要解决这个问题。
当用 php 的 mail()函数发送邮件时,如果包含中文,标题产生乱码,需要做以下处理即可解决:
先用函数 base64_encode() — 使用 MIME base64 对标题数据进行编码
标题字符串前加编码类型例如:=?UTF-8?B?
标题字符串后加:?=
例如:
1
2
|
$subject = '邮件标题中文 -php-mail()函数';
$subject = "=?UTF-8?B?".base64_encode($subject)."?=";
|
$subject = ‘ 邮件标题中文 -php-mail()函数 ’;
$subject = “=?UTF-8?B?”.base64_encode($subject).”?=”;
这样就不会乱码了。
对应的,邮件的 header 可以简单设置一下,以下举例说明发送一封邮件:
1
2 3
4
5
6
7
8
9
|
$mail = 'digdeeply@staff.sina.com.cn';
$text = "邮件正文 content……";
$subject = 'IVR 内置控制平台定时脚本运行 SQL 错误';
$subject = "=?UTF-8?B?".base64_encode($subject)."?=";
$headers = 'From: You <digdeeply@staff.sina.com.cn>' . "\n";
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-type: text/html; charset=uft-8' . "\r\n";
$headers .="Content-Transfer-Encoding: 8bit";
mail($mail, $subject, $text, $headers );
|
$mail = ‘digdeeply@staff.sina.com.cn’;
$text = “ 邮件正文 content……”;
$subject = ‘IVR 内置控制平台定时脚本运行 SQL 错误 ’;
$subject = “=?UTF-8?B?”.base64_encode($subject).”?=”;
$headers = ‘From: You <digdeeply@staff.sina.com.cn>’ . “\n”;
$headers .= ‘MIME-Version: 1.0’ . “\n”;
$headers .= ‘Content-type: text/html; charset=uft-8’ . “\r\n”;
$headers .=”Content-Transfer-Encoding: 8bit”;
mail($mail, $subject, $text, $headers);
如果是 WordPress,我们可以将 mail() 换成 wp_mail() 也是一样的。
参考资料:http://digdeeply.org/archives/12291665.html