我正在使用XAMPP
,当我发送带有 PHPmail()
函数的电子邮件时,主题出现两次(如“你好,你好”)。
PHP代码:
$from="me@gmail.com";
$to="you@gmail.com";
$subject="hello";
$message="this doesn't work nicely";
$headers = 'From: '.$from."\r\n".
'Subject: '.$subject."\r\n".
'Mime-Version: 1.0'."\r\n";
mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $headers);
有谁知道解决方案?