我有一个php / html网站的联系页面,我正在尝试使用邮件功能在php中发送html电子邮件,但电子邮件从未通过我没有收到任何错误。
这是我的代码:
<?php
$required = array('FirstName', 'LastName', 'Email', 'Subject', 'Message');
if (isset($_POST['Submit']))
{
foreach ( $required as $formfield )
{
if (empty($_POST[$formfield]))
{
header("Location: contact.html");
die();
}
}
$FirstName = $_POST['FirstName'];
$LastName = $_POST['LastName'];
$Email = $_POST['Email'];
$Subject = $_POST['Subject'];
$Message = $_POST['Message'];
$To = "edjoks3000@rocketmail.com";
$From = $Email;
//begin of HTML message
$Message = <<<EOF
<html>
<body bgcolor="#DCEEFC">
$Message
</body>
</html>
EOF;
$Headers = "From: $From\r\n";
$Headers .= "Content-type: text/html\r\n";
// Sending the mail
mail($To, $Subject, $Message, $Headers);
}
?>
我已经尝试了一段时间并且无法做到这一点,我不想使用像'swift'或'phpmailer'这样的邮件插件,因为当我上传到服务器时我遇到问题。
答案 0 :(得分:0)
EOF
更改为EOF;
后,分号丢失