У меня следующая проблема: у меня есть контактная форма на моем Bootstrap 4. html веб-сайте. Форма представляет собой простую форму, основанную на PHPMailer с Bootstrap валидатором. Ранее я получал электронные письма от моей контактной формы без SMTP, и все было хорошо. Теперь я решил использовать Gmail SMTP и изменил свой код. Я получаю сообщения на свой почтовый ящик gmail, но сразу после отправки письма вижу ошибки на веб-сайте.
Не могли бы вы, пожалуйста, дайте мне знать, где моя проблема? Я сломал голову, пытаясь решить проблему.
ajax. js файл:
$(document).ready(function() {
function submitForm(){
var name =$("input[name=name]").val();
var email =$("input[name=email]").val();
var comment =$("textarea[name=comment]").val();
var captcha=grecaptcha.getResponse();
var form = $('form')[0];
var formData = new FormData(form);
formData.append('name', name );
formData.append('email', email );
formData.append('comment', comment );
formData.append('captcha', captcha );
$.ajax({
url: "include/ajax/send.php",
type: "POST",
contentType: false,
processData: false,
data: formData,
cache: false,
success : function(text){
if (text == "success"){
formSuccess();
} else {
formError();
submitMSG(false,text);
}
}
});
}
php файл:
// send email
$mail = new PHPMailer;
// Email Template
$mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 0;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
// use
// $mail->Host = gethostbyname('smtp.gmail.com');
// if your network does not support SMTP over IPv6
//Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 465;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'ssl';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication - use full email address for gmail
$mail->Username = "xxx@gmail.com";
//Password to use for SMTP authentication
$mail->Password = "xxx";
/* Replace the email address and the Email Subject */
$EmailTo = "xxx@gmail.com"; // The Send To Email
$Subject= "New Message"; // Email Subject
// reCAPTCHA SEcret Key
$reCaptchaSecretKey = "xxx";
//retrive form variables from ajax
$name =@$_REQUEST["name"];
$email =@$_POST["email"];
$comment =@$_POST["comment"];
$captcha=@$_REQUEST["captcha"];
$formGoogleCaptcha = $captcha;
//check Catptcha
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$reCaptchaSecretKey."&response=".$formGoogleCaptcha."&remoteip=".$_SERVER['REMOTE_ADDR']);
$obj = json_decode($response);
if ($obj->success == 1 || $obj->success == true) {
$email_body="";
$email_body = $email_body . "<strong>First Name: </strong>" . $name . "\r\n\r\n";
$email_body = $email_body . "<strong>Email: </strong>" . $email . "\r\n\r\n";
$email_body = $email_body . "<strong>Message: </strong>" . $comment . "\r\n\r\n";
$email_body = nl2br($email_body);
$mail->SMTPDebug = 1;
Я также приложил пример ошибки
Заранее спасибо, товарищи.