联系 PHP 表单 - 未收到邮件 (GMAIL)

Contact PHP form - not receiving mail (GMAIL)

我一直在努力让我的联系表正常工作,但我在我的 gmail 文件夹中没有收到任何电子邮件(包括垃圾邮件和垃圾邮件。也无法通过我的主机跟踪任何内容)。

我一直在学习这个教程:http://bootstrapious.com/p/how-to-build-a-working-bootstrap-contact-form

需要一些认真的帮助,因为我已经尝试了所有方法!

<?php


$from = $_POST['email'];
$sendTo = 'myemail@gmail.com';
$subject = 'New message from contact form';
$fields = array('name' => 'Name', 'surname' => 'Surname', 'email' =>     'Email',  'phone' => 'Phone', 'message' => 'Message');

 // array variable name => Text to appear in email

$okMessage = 'Contact form succesfully submitted. Thank you, I will get back     to you soon!';
$errorMessage = 'There was an error while submitting the form. Please try again later';

// let's do the sending

try
{
$emailText = "You have new message from contact     form\n=============================\n";

foreach ($_POST as $key => $value) {

    if (isset($fields[$key])) {
        $emailText .= "$fields[$key]: $value\n";
    }
 }

  mail($sendTo, $subject, $emailText, "From: " . $from);

  $responseArray = array('type' => 'success', 'message' => $okMessage);
}
catch (\Exception $e)
{
$responseArray = array('type' => 'danger', 'message' => $errorMessage);
}

if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) &&     strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
$encoded = json_encode($responseArray);

header('Content-Type: application/json');

echo $encoded;
}
else {
echo $responseArray['message'];
}

HTML 表格

<form id="contact-form" method="post" action="contact.php" role="form">

<div class="messages"></div>

  <div class="form-group">
      <div class="row">
          <div class="col-md-6 col-sm-12">
              <label>First name*</label>
              <input type="text" id="form-name" name="name" class="form-     control" placeholder="Please enter your firstname *" required="required">
          </div>
          <div class="col-md-6 col-sm-12">
              <label>Last name*</label>
              <input type="text" name="surname" id="form-surname"     class="form-control" placeholder="Please enter your firstname *"     required="required">
          </div>
      </div>
  </div>
    <div class="form-group">
        <div class="row">
            <div class="col-md-6 col-sm-12">
                <label>Email*</label>
                <input type="email" name="email" id="form-email"  class="form-control" placeholder="Please enter your firstname *"  required="required">
            </div>
            <div class="col-md-6 col-sm-12">
                <label>Phone</label>
                <input type="tel" name="phone" id="form-phone" class="form- control" placeholder="Please enter your phone">
            </div>
        </div>
    </div>


    <div class="form-group">
      <label for="comment">Message*</label>
      <textarea class="form-control" rows="7" name="message" id="form-message" default="Type us a message" required="required"></textarea>
    </div>    

    <div class="checkbox">
      <label><input type="checkbox" value="">Join mailing list</label>
    </div>  
    <input type="submit" class="btm btn-success btn-send" value="Send message">
    <p class="text-muted"><strong>*</strong> These fields are required.</p>
 </form>

您没有邮件投递错误?

尝试从以下主机发送电子邮件:

$from = $_POST['email']; (like youremail@gmail.com)

Gmail 检查 DNS 服务器中的 DKIM(发布者)和 SPF(签名者)记录到电子邮件主机。如果电子邮件主机没有 DKIM 记录,则可能无法提供电子邮件。

更多(gmail):

https://support.google.com/mail/answer/180707?hl=en

更多(如何安装和配置 DKIM):

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-dkim-with-postfix-on-debian-wheezy

由于许多服务器不允许您以未注册的人的名义发送电子邮件,您应该在您的服务器上创建一个电子邮件,仅用于向您发送您的用户在填写联系人后写的电子邮件表单,那么您应该使用 class 之类的 PHPMailer 来为您发送电子邮件。

展示如何使用 PHPMailer 的一个简单示例是:

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

//$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.yourserver.here';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'user@userserver.here';                 // SMTP username
$mail->Password = 'password';                           // SMTP password
$mail->SMTPSecure = 'tls';
$mail->Port = 587;                                    // TCP port to connect to

$mail->setFrom('user@userserver.here', 'Mailer');
$mail->addAddress('your@email.here', 'You');     // Add a recipient
$mail->addReplyTo('theuser@email.here', 'User that submitted form');

$mail->Subject = 'Subject here';
$mail->Body    = 'Write here your message';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

示例取自 link 我在上面告诉过你。