使用mail函数发送邮件标题乱码问题
来源:振中的技术记事本 责任编辑:栏目编辑 发表时间:2013-07-02 03:28 点击:次
PHP程序使用mail()函数发送邮件的时候,标题中文的话会出现乱码。
解决方法:
先用函数base64_encode() — 使用 MIME base64 对数据进行编码
标题字符串前加编码类型例如: =?UTF-8?B?
标题字符串后加:?=
邮件header说明Content-type — 防止邮件正文也乱码
举例:
- $to = 'xinple@example.com';
- $subject = "=?UTF-8?B?".base64_encode('邮件标题')."?=";
- $headers = 'MIME-Version: 1.0' . "/r/n";
- $headers .= 'Content-type: text/html; charset=utf-8' . "/r/n";
- // Additional headers
- $headers .= 'To: Xinple ' . "/r/n";
- $headers .= 'From: Admin ' . "/r/n";
- $headers .= 'Reply-To: Xinple ' . "/r/n";
- mail($to, $subject, $message, $headers);
本文出自 “振中的技术记事本” 博客,请务必保留此出处http://speedphp.blog.51cto.com/1904268/625131
相关新闻>>
- 发表评论
-
- 最新评论 更多>>