欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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);