PHP邮件问题-不会发送电子邮件


PHP mail issues - will not send email

我目前正在处理一个简单的表单,我希望通过php脚本收集信息,然后作为邮件发送给我,但我没有收到特定的电子邮件。

有人能指出问题吗?谢谢

这是我表格的代码:

<form name="bookingForm" method="post" action="send_dates.php">
<table border="0" cellspacing="1" cellpadding="2">
<tr>
    <td>Booking From</td>
        <td>:</td>
    <td><input name="fromDate" id="fromDate" size="20"></td>
    <td>To</td>
    <td>:</td>
    <td><input name="toDate" id="toDate" size="20"></td>
</tr>
<tr>
    <td>Name</td>
    <td>:</td>
    <td><input name="name" type="text" id="name" size="30"></td>
</tr>
<tr>
    <td width="20px">Telephone</td>
    <td>:</td>
    <td><input name="telephone" type="text" id="customer_telephone" size="30"></td>
</tr>
<tr>
    <td width="20px">Email</td>
    <td>:</td>
    <td><input name="customer_mail" type="text" id="customer_mail" size="30"></td>
</tr>
<tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td><input type="submit" name="submit" value="Submit"> <input type="reset" name="ResetForm" value="Reset"></td>
</tr>
</table>
</form>

这是我的php脚本:

<?php 
 $name = $_POST['name'];
 $fromDate = $_POST['fromDate'];
 $toDate = $_POST['toDate');
 $email = $_POST['customer_email'];
 $telephone = $_POST['customer_telephone'];
// Mail of reciever
$to = "blablabla@blabla.com";
// Contact subject
$subject ="Reservation Enquiry from $name";
// Details
$message="From: $name
Email: $email
Telephone: $customer_telephone
--------------------------------------------------------------
Reservation date from: $fromDate to: $toDate ";
// Mail of sender
$mail_from="$customer_mail";
// From
$res=mail($to,$subject,$message);
    if($res)
{
    header('Location:index.php');
}
    ?>

缺少的分号

$to = "blablabla@blabla.com";

更新:

删除if(!empty($data))环路

检查$res = mail(...);

然后放入

if($res)
         {
            echo '<script type="text/javascript">
                     window.location = "index.php";
                  </script>';
         }
         else
         {
             echo 'something wrong';
         }

可能的原因是SMTP服务器地址错误。

停止Web服务器,更正PHP.INI中的SMTP服务器地址,重新启动Web服务器。

您可以通过执行<?php phpinfo(); ?>检查当前配置并搜索SMTP。