我遇到了电子邮件回复地址的问题。 由于某种原因,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:>
我可能错过了一些明显的东西,但我无法解决这个问题。
干杯
答案 0 :(得分: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";
答案 1 :(得分:1)
回复后你错过了\r\n
。
$headers = 'From: The Client <'.$emailTo.'>' . "\r\n" . 'Reply-To: info@mydomain.com' . "\r\n";