PHP使用mail函数发送邮件标题乱码问题解决方法
程序员文章站
2022-04-15 08:43:28
...
php代码
$to = 'phplovers@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 'phplovers@example.com>' . "\r\n"; $headers .= 'From: Admin admin@example.com>' . "\r\n"; $headers .= 'Reply-To: Xinple 'phplovers@example>' . "\r\n"; mail($to, $subject, $message, $headers);
推荐阅读
-
Ubuntu中启用php的mail()函数并解决发送邮件速度慢问题
-
[PHP] 邮件发送mail()函数失败问题 sendmail命令与postfix
-
php的mail函数发送UTF-8编码中文邮件时标题乱码的解决办法
-
php中mail函数发送邮件失败的解决方法_PHP
-
解决 PHP 的 mail() 发送邮件时出现乱码的问题
-
php中mail函数发送邮件失败的解决方法_PHP
-
php中mail函数发送邮件失败的解决方法
-
Zend Framework框架之Zend_Mail实现发送Email邮件验证功能及解决标题乱码的方法_PHP
-
Ubuntu中启用php的mail()函数并解决发送邮件速度慢问题_php实例
-
Ubuntu中启用php的mail()函数并解决发送邮件速度慢问题