所以当我在不修改页眉信息以发送 html 类型邮件的情况下执行此操作时, 它会发送 。 然而, 当我收到它时, 它会发送, 并且是一个 html 的电子邮件, 它从未收到发送 。
这里是代码:
<?php
$to = "[email protected]";
$subject = "Order Confimation - mywebsite.com";
$headers = "MIME-Version: 1.0" . "
";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "
";
$headers .= "From: <[email protected]>";
$message = "
<!DOCTYPE html>
<html lang= en-us >
<head>
<meta charset= utf-8 >
<title>Order Confirmation</title>
<style type= text/css >
//style information
</style>
</head>
<body>
<div class= box >
<h1 class= right >Thanks!</h1>
//Blah blah blah
</div>
</body>
</html>
";
mail($to, $subject, $message, $headers);
if (mail($to, $subject, $message, $headers)) {
echo "<p class= hide >E-mail Sent</p>";
} else {
echo "<p class= hide >Problem</p>";
}
?>
并且它还回回电子邮件发送 不管电子邮件从不转到收件箱
有什么建议吗?
还启用了梨子包 。