1

我对地址的电子邮件回复有问题。由于某种原因,MIME 类型显示在回复地址中。

这是标题

$headers = 'From: The Client <'.$emailTo.'>' . "\r\n" . 'Reply-To: info@mydomain.com';
    $headers .= "MIME-Version: 1.0\r\n";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

当我收到邮件时,如果我点击回复,在地址字段中我会得到:

"1.0" <info@mydomain.commime-version:>

我可能遗漏了一些明显的东西,但我无法解决。

干杯

4

2 回答 2

3

你错过了\r\n

$headers = "From: The Client <".$emailTo.">\r\n";
$headers .= "Reply-To: info@mydomain.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
于 2012-07-04T08:19:05.360 回答
1

\r\n回复后您错过了。

$headers = 'From: The Client <'.$emailTo.'>' . "\r\n" . 'Reply-To: info@mydomain.com' . "\r\n";
于 2012-07-04T08:19:07.230 回答