2

我正在尝试发送带有 html 代码的电子邮件。我有以下代码;

$message ="<html><head><title></title></head><body>test</body></html>"; 
$rmail = $mail_email;
$subject = "subject";
$head = "MIME-Version: 1.0 ";
$head .= "Content-type: text/html; charset=utf8";           
$head .= "Date: ".date("r")." ";
$mail_at=mail($rmail, $subject, $message, $head);

但是,当我打开邮件时,邮件内容是,

<html><head><title></title></head><body>test</body></html>

它只是发送字符串而不编译 html 代码。

4

1 回答 1

5

您需要在标题中添加换行符

 $head = "MIME-Version: 1.0 \r\n";
 $head .= "Content-type: text/html; charset=utf8 \r\n";           
 $head .= "Date: ".date("r")." \r\n";

否则Content-type标题与MIME-versionwhich 不起作用

主要\r\n适用于我,但我见过一些只适用于它的服务器\n

于 2013-06-24T11:22:28.797 回答