即使在发送电子邮件后,PHP联系表也不会发送电子邮件

时间:2016-10-15 11:51:27

标签: php html contact-form

我在我的网站上整理了一个简单的PHP联系表单。 当我提交消息时,它会发送消息。 但我没有收到电子邮件。

我正在使用的代码位于

之下
<?php
    $action=$_REQUEST['action'];

    if ($action=="") /* display the contact form */
    {
?>

<form action="" method="post" enctype="multipart/form-data">
    <input type="hidden" name="action" value="submit">
    <div class="field half first">
        <label for="name">Name</label>
        <input name="name" id="name" type="text" placeholder="Name">
    </div>
    <div class="field half">
        <label for="email">Email</label>
        <input name="email" id="email" type="email" placeholder="Email">
    </div>
    <div class="field">
        <label for="message">Message</label>
        <textarea name="message" id="message" rows="6" placeholder="Message"></textarea>
    </div>
    <ul class="actions">
        <li><input value="Send email" class="button alt" type="submit"></li>
    </ul>
</form>

<?php
    } 
    else /* send the submitted data */
    {
        $name=$_REQUEST['name'];
        $email=$_REQUEST['email'];
        $message=$_REQUEST['message'];

        if (($name=="")||($email=="")||($message==""))
        {
            echo "All fields are required, please fill <a href=\"\">the form</a> again.";
        }
        else{       
            $from="From: $name<$email>\r\nReturn-path: $email";
            $subject="Message sent using your contact form";
            mail("xyz@website.com", $subject, $message, $from);
            echo "Email sent!";
        }
    }  
?>

为谷歌应用设置MX记录,这与电子邮件未被发送的原因有关吗?

2 个答案:

答案 0 :(得分:0)

你的代码对我来说似乎很好。

如果您在localhost上执行此操作,可能是您发送邮件的地址拒绝它,因为SMTP未正确配置。

如果是这种情况,请尝试将其上传到远程服务器。或者在您的计算机上配置SMTP。

答案 1 :(得分:0)

我修复了它,这是一个godaddy问题,MX Entry&gt;&gt;邮件路由需要设置为

远程

enter image description here