PHP表单发送正确,但我没有收到电子邮件[重复]

Posted

技术标签:

【中文标题】PHP表单发送正确,但我没有收到电子邮件[重复]【英文标题】:PHP form send correctly but I didn't reveive Email [duplicate] 【发布时间】:2018-02-12 07:03:45 【问题描述】:

我正在尝试通过此引导模板创建一个 php 联系表单: https://startbootstrap.com/template-overviews/agency/

此模板在我的本地主机中正常工作,电子邮件正确发送并且我收到了电子邮件。

但是当我在我自己的网站上使用他们的代码时,它总是说电子邮件正确发送,但我从来没有收到电子邮件

以下是代码

HTML:

<!-- contact form begin -->
            <span id="form-title">Let's Get In Touch</span>
            <div class="form-group">
              <input class="input-style1 form-control" id="name" type="text" placeholder="Your Name *" required data-validation-required-message="Please enter your name.">
              <p class="help-block text-danger"></p>
            </div>
            <div class="form-group">
              <input class="input-style1 form-control" id="email" type="email" placeholder="Your Email *" required data-validation-required-message="Please enter your email address.">
              <p class="help-block text-danger"></p>
            </div>
            <div class="form-group">
              <input class="input-style1 form-control" id="phone" type="tel" placeholder="Your Phone *" required data-validation-required-message="Please enter your phone number.">
              <p class="help-block text-danger"></p>
            </div>
            <div class="form-group">
              <textarea rows="5" class="form-control input-style2" id="message" placeholder="Your Message *" required data-validation-required-message="Please enter a message."></textarea>
              <p class="help-block text-danger"></p>
            </div>
            <div class="clearfix"></div>
            <div class="text-center">
              <div id="success"></div>
              <button id="sendMessageButton" class="btn btn-xl" type="submit">Send Message</button>
            </div>
            <!-- contact form ends -->

contact_me.js

$(function() 

  $("#contactForm input,#contactForm textarea").jqBootstrapValidation(
    preventSubmit: true,
    submitError: function($form, event, errors) 
      // additional error messages or events
    ,
    submitSuccess: function($form, event) 
      event.preventDefault(); // prevent default submit behaviour
      // get values from FORM
      var name = $("input#name").val();
      var email = $("input#email").val();
      var phone = $("input#phone").val();
      var message = $("textarea#message").val();
      var firstName = name; // For Success/Failure Message
      // Check for white space in name for Success/Fail message
      if (firstName.indexOf(' ') >= 0) 
        firstName = name.split(' ').slice(0, -1).join(' ');
      
      $this = $("#sendMessageButton");
      $this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages
      $.ajax(
        url: "././mail/contact_me.php",
        type: "POST",
        data: 
          name: name,
          phone: phone,
          email: email,
          message: message
        ,
        cache: false,
        success: function() 
          // Success message
          $('#success').html("<div class='alert alert-success'>");
          $('#success > .alert-success').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;")
            .append("</button>");
          $('#success > .alert-success')
            .append("<strong>Your message has been sent. </strong>");
          $('#success > .alert-success')
            .append('</div>');
          //clear all fields
          $('#contactForm').trigger("reset");
        ,
        error: function() 
          // Fail message
          $('#success').html("<div class='alert alert-danger'>");
          $('#success > .alert-danger').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;")
            .append("</button>");
          $('#success > .alert-danger').append($("<strong>").text("Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!"));
          $('#success > .alert-danger').append('</div>');
          //clear all fields
          $('#contactForm').trigger("reset");
        ,
        complete: function() 
          setTimeout(function() 
            $this.prop("disabled", false); // Re-enable submit button when AJAX call is complete
          , 1000);
        
      );
    ,
    filter: function() 
      return $(this).is(":visible");
    ,
  );

  $("a[data-toggle=\"tab\"]").click(function(e) 
    e.preventDefault();
    $(this).tab("show");
  );
);

/*When clicking on Full hide fail/success boxes */
$('#name').focus(function() 
  $('#success').html('');
);

PHP

<?php
// Check for empty fields
if(empty($_POST['name'])      ||
   empty($_POST['email'])     ||
   empty($_POST['phone'])     ||
   empty($_POST['message'])   ||
   !filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
   
   echo "No arguments Provided!";
   return false;
   

$name = strip_tags(htmlspecialchars($_POST['name']));
$email_address = strip_tags(htmlspecialchars($_POST['email']));
$phone = strip_tags(htmlspecialchars($_POST['phone']));
$message = strip_tags(htmlspecialchars($_POST['message']));

// Create the email and send the message
$to = 'yourname@yourdomain.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
$email_subject = "Website Contact Form:  $name";
$email_body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message";
$headers = "From: noreply@yourdomain.com\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.
$headers .= "Reply-To: $email_address";
mail($to,$email_subject,$email_body,$headers);
return true;
?>

我想知道是否需要任何配置或其他东西才能使 mail() 功能在我自己的网站上工作

【问题讨论】:

避免使用它依赖于本地 MTA 的 mail() 函数,它可能未设置甚至未安装,您还需要编辑 php.ini 以使其工作,这对部署来说是一个痛苦。使用 PHPmailer 或 swiftmailer 之类的库,然后使用 SMTP 服务,它可以是您的 ISP 或第 3 方,如 mailgun、sendgrid、smtp2go 等,许多还提供免费的低容量配额,这应该可以帮助您开始(您也可以使用gmail),那么您发送电子邮件应该没有问题,这几乎肯定不会落在垃圾邮件文件夹中,而且您将获得额外的调试信息以防它失败。 您的代码也对标头注入开放。 【参考方案1】:

以下是我首先要看的领域:

错误处理

目前,无论调用做什么,脚本都会在邮件调用后返回TRUEmail() 方法本身会在失败时返回 false,在失败时返回 there are ways to check the errors it might be throwing。您的$.ajax 处理程序始终会将调用视为“成功” - 因为调用将始终返回TRUE。将mail 调用分配给它自己的变量可能会更好:

$mail_succeeded = mail($to, $email_subject, $email_body, $headers);
return $mail_succeeded;

这会让您知道mail 是否真的在运行。上面的链接提供了如何使用它来获取相关错误消息(如果存在)的示例。

相对路径

您是否仔细检查过您的相对路径的结构是否正确,以便您的网络服务器能够按照您的预期进行处理?这可能不是问题,但././mail/contact_me.php 引起了我的注意。

(From a question regarding relative paths)

路径段“.”和“..”也称为点段,分别是 为路径名层次结构中的相对引用而定义。他们 旨在用于相对路径引用的开头 (Section 4.2) 表示层次结构中的相对位置 名字树。这类似于他们在某些操作中的角色 系统的文件目录结构以指示当前目录 和父目录,分别。然而,与文件系统不同的是, 这些点段仅在 URI 路径层次结构中解释 并作为解决过程的一部分被删除 (Section 5.2)。

服务器上的邮件设置

来自您正在使用的主题的文档:

如果您在使用联系表时遇到问题,请务必关注 这些步骤:

    首先确保您的网站托管在启用 PHP 的网络服务器上。当点击提交按钮时,PHP 脚本在 contact_me.php 运行。如果您尝试在本地使用表单,则 除非您在您的服务器上设置了服务器环境,否则消息不会发送 本地机器。

    如果您已将网站上传到网络服务器,但表单仍未发送,则可能存在权限/安全问题 阻止表单发送电子邮件。首先确保电子邮件 您发送邮件的地址是正确的。如果正确,请尝试 使用带有私有域的电子邮件地址,而不是某些东西 流行的像 Gmail 或雅虎。许多网络主机阻止表单 发送到流行的邮件服务器以用于垃圾邮件。如果还是不行 更改电子邮件地址后工作,请联系您的网络主机以查看 如果他们能弄清楚是什么阻止了表单发送。

除此之外,您还需要确保在php.ini 文件中定义并正确设置了电子邮件设置。 您的主机可能会在可配置性方面限制您的选择,但here is a brief tutorial 会设置它。

检查您的 PHP 错误日志,确保您没有遗漏设置中阻止电子邮件发送的简单内容。

最后,我敦促您避免使用 PHP 的 mail() 方法发送电子邮件。有several well known exploits 使mail() 成为发送电子邮件的潜在不安全方式。还有其他选项可以很容易地在您的服务器上实现,以避免mail() 的限制和漏洞。

【讨论】:

以上是关于PHP表单发送正确,但我没有收到电子邮件[重复]的主要内容,如果未能解决你的问题,请参考以下文章

使用PHP和特殊字符从联系表单发送邮件[重复]

PHPMailer发送没有表单数据的邮件[重复]

处理安全问题的基本php表单

使用mail.php时没有邮件发送[重复]

发送带有希腊字符的电子邮件无法正确显示(使用HTML,Javascript,PHP)

发送电子邮件[关闭]