我们最近升级到了 Plesk Parallel Linux 服务器,它看起来好像 PHP 设置忽略了标题!电子邮件接收良好,但显示HTML 标记。
该phpInfo()
文件可以在这里查看:https ://www.pressgofer.com/phpInfo.php
PHP 本身应该没问题,但无论如何都将它包含在此处。
PHP 邮件代码
$email = "example@example.com";
$message = "<h1 style='font-family:Helvetica,Arial;font-size:17px'>Your account has a password reset request</h1>";
$headers = "From: noreply@pressgofer.com \r\n";
$headers .= "Reply-To: noreply@pressgofer.com \r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
mail($email, "Reset password notification", $message, $headers);
非常感谢,尼克