联系PHP表单 - 不接收邮件(GMAIL)

问题描述:

我一直试图让我的联系表格工作,但我没有收到我的Gmail邮件文件夹中的任何电子邮件(包括垃圾邮件和垃圾邮件,也无法通过我的任何跟踪主办)。联系PHP表单 - 不接收邮件(GMAIL)

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

需要一些严重的帮助,因为我已经尝试了一切!

<?php 


$from = $_POST['email']; 
$sendTo = '[email protected]'; 
$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> 
+0

你有任何错误信息? –

+0

你的主机是否支持php mail()? – AkshayP

+0

据我所知,没有错误消息提交 –

由于许多服务器不允许您发送电子邮件在没有注册的人的名字,你应该在你的服务器上创建一个电子邮件,它只是用来发送你的用户在填写联系表单后写入的电子邮件,然后你应该使用类似的类为您发送电子邮件。

一个简单的例子说明如何使用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 = '[email protected]';     // SMTP username 
$mail->Password = 'password';       // SMTP password 
$mail->SMTPSecure = 'tls'; 
$mail->Port = 587;         // TCP port to connect to 

$mail->setFrom('[email protected]', 'Mailer'); 
$mail->addAddress('[email protected]', 'You');  // Add a recipient 
$mail->addReplyTo('[email protected]', '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'; 
} 

的例子是从我告诉你上面的链接采取。

+0

创建邮件帐户上传phpmailer文件并在上面的php代码中输入值后,我将如何去测试它? –

+0

你可以把这段代码放入一个函数中,并在你按下提交按钮后调用函数 – rafaelcpalmeida