Home > php教程 > php手册 > body text

解决 PHP 的 mail() 发送邮件时出现乱码的问题

WBOY
Release: 2016-06-06 20:11:11
Original
947 people have browsed it

cmhello主题的右边有一个“反馈与建议”功能,可以直接发送访客的建议信息到管理员的邮箱,但是邮件主题(subject)只要有中文就显示乱码,最近在升级这个主题,当然也要解决这个问题。 当用php的mail()函数发送邮件时,如果包含中文,标题产生乱码,需要做

cmhello主题的右边有一个“反馈与建议”功能,可以直接发送访客的建议信息到管理员的邮箱,但是邮件主题(subject)只要有中文就显示乱码,最近在升级这个主题,当然也要解决这个问题。

当用php的mail()函数发送邮件时,如果包含中文,标题产生乱码,需要做以下处理即可解决:

先用函数base64_encode() — 使用 MIME base64 对标题数据进行编码
标题字符串前加编码类型例如: =?UTF-8?B?
标题字符串后加:?=

例如:

$subject = '邮件标题中文-php-mail()函数';
$subject = "=?UTF-8?B?".base64_encode($subject)."?=";
Copy after login

这样就不会乱码了。

对应的,邮件的header可以简单设置一下,以下举例说明发送一封邮件:

$mail = 'digdeeply@staff.sina.com.cn';
$text = "邮件正文content……";
$subject = 'IVR 内置控制平台定时脚本运行SQL错误';
$subject = "=?UTF-8?B?".base64_encode($subject)."?=";
$headers = 'From: You ' . "\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 );
Copy after login

如果是 WordPress,我们可以将 mail() 换成 wp_mail() 也是一样的。

参考资料:http://digdeeply.org/archives/12291665.html

解决 PHP 的 mail() 发送邮件时出现乱码的问题 cmhello主题的右边有一个“反馈与建议”功能,可以直接发送访客的建议信息到管理员的邮箱,但是邮件主题(su ...解决 PHP 的 mail() 发送邮件时出现乱码的问题
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template