我正在开发一个简单的网站,但在联系表单方面遇到了一些问题,我尝试了所有类型的设置,但它没有用。
问题是当我填写表格并按下提交按钮时,它会显示“消息发送成功”但我无法收到任何邮件到我的邮件 ID。
那我该怎么办……???
我的PHP CODE
:文件名是“ mail.php
”
<?php
echo '<html xmlns="http://www.w3.org/1999/xhtml">';
echo '<head>';
echo '<meta http-equiv="content-type" content="text/html; charset=utf-8" />';
echo '<title>';
echo $title;
echo '</title>';
echo '</head>';
echo '<body>';
$to = "anup.karanjkar08@gmail.com;
$subject = $_REQUEST['Name'] + "Sent a Mail";
$message = $_REQUEST['Message'] ;
$from = $_REQUEST['Email'] ;
$headers = "From:" . $from;
$a= mail($to,$subject,$message);
if ($a) {
echo "Message sent successfully";
}
else
{
echo "Sorry there is an error.";
}
echo '</body>';
echo '</html>';
?>
我的HTML CODE
<form name="contact_to_infrasure" id="infrasure" action="mail.php" method="POST">
<div class="row-fluid">
NAME<br><input type="text" name="Name">
</div>
<div class="row-fluid">
EMAIL<br><input type="text" name="Email"><br>
</div>
<div class="row-fluid">
MESSAGE<br><textarea rows="5" style="width: 60%" name="Message"></textarea><br>
</div>
<div class="row-fluid">
<!-- <input class="span3" type="submit" value="SEND MESSAGE"> -->
<button class="btn" type="submit" value="Submit" onClick="">SEND MESSAGE</button>
</div>
</form>
请帮我...!!!