0

我正在使用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);

有谁知道解决方案?

4

1 回答 1

0

看起来 $headers 是这里的问题:

$from="me@gmail.com";

$to="you@gmail.com";

$subject="hello";

$message="this doesn't work nicely";

mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message,);
于 2015-10-08T11:02:57.607 回答