HTML标记和内联样式在PHP电子邮件中不起作用

时间:2016-01-20 19:10:13

标签: php html css email

我正在使用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对齐。所以,我猜内联样式也不起作用。

0 个答案:

没有答案