我正在使用PHP发送电子邮件。出于某种原因,h1
标记无效。这是一个样本邮件。
$to = 'user@gmail.com';
$subject = "Subject";
$header = "from: Website <contact@website.com>\r\n";
$header .= "Reply-To: contact@website.com\r\n";
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: text/html; charset=utf-8\r\n";
$message = '<html><body>';
$message .= '<img style="margin-bottom:20px;" src="link to image"/>';
$message .= '<h1 style="text-align:center;">How are you using Website?</h1>';
$message .= '</body></html>';
if (mail($to, $subject, $message, $header)) {
return true;
}
我在电子邮件中使用的li
标记或a
标记很好地展示了。为什么h1
标签不起作用?此外,文字未与center
对齐。所以,我猜内联样式也不起作用。