我正在尝试发送带有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代码。
答案 0 :(得分: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-version
位于同一行,不起作用
大部分\r\n
对我有用,但我看过一些服务器,只适用于\n