#jquery #ajax #phpmailer
#jquery #ajax #phpmailer
Вопрос:
Пожалуйста, проверьте почту и ответьте мне, где я неправильно кодирую. Не удалось отправить электронное письмо, пожалуйста, проверьте конфигурацию почты php — ошибка? Всегда переходим к части else.
<?php
if($_POST)
{
$to_Email = "xxx@gmail.com"; //Replace with recipient email address
$subject = 'Thanks for choosing XXXXXX'; //Subject line for emails
//check if its an ajax request, exit if not
if(!isset($_SERVER['HTTP_X_REQUESTED_WITH']) AND strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) != 'xmlhttprequest') {
//exit script outputting json data
$output = json_encode(
array(
'type'=>'error',
'text' => 'Request must come from Ajax'
));
die($output);
}
if(!isset($_POST["userName"]) || !isset($_POST["userPhone"]) || !isset($_POST["userEmail"]) || !isset($_POST["userCompany"]) || !isset($_POST["userFrom"]) || !isset($_POST["userDest"]) || !isset($_POST["userItems"]) || !isset($_POST["userMessage"]))
{
$output = json_encode(array('type'=>'error', 'text' => 'Input fields are empty!'));
die($output);
}
//Sanitize input data using PHP filter_var().
$user_Name = filter_var($_POST["userName"], FILTER_SANITIZE_STRING);
$user_Phone = filter_var($_POST["userPhone"], FILTER_SANITIZE_STRING);
$user_Email = filter_var($_POST["userEmail"], FILTER_SANITIZE_EMAIL);
$user_Company = filter_var($_POST["userCompany"], FILTER_SANITIZE_STRING);
$user_From = filter_var($_POST["userFrom"], FILTER_SANITIZE_STRING);
$user_Dest = filter_var($_POST["userDest"], FILTER_SANITIZE_STRING);
$user_Items = filter_var($_POST["userItems"], FILTER_SANITIZE_STRING);
$user_Message = filter_var($_POST["userMessage"], FILTER_SANITIZE_STRING);
//additional php validation
if(strlen($user_Name)<4) // If length is less than 4 it will throw an HTTP error.
{
$output = json_encode(array('type'=>'error', 'text' =>'Name is too short or empty!'));
die($output);
}
if(!is_numeric($user_Phone) || strlen($user_Phone)<10 || strlen($user_Phone)>10) //check entered data is numbers
{
$output = json_encode(array('type'=>'error', 'text' =>'Invalid Phone Number'));
die($output);
}
if(!filter_var($user_Email, FILTER_VALIDATE_EMAIL)) //email validation
{
$output = json_encode(array('type'=>'error', 'text' =>'Please enter a valid email!'));
die($output);
}
if(strlen($user_From)<3) // If length is less than 3 it will throw an HTTP error.
{
$output = json_encode(array('type'=>'error', 'text' =>'Location Name is too short or empty!'));
die($output);
}
if(strlen($user_Dest)<3) // If length is less than 4 it will throw an HTTP error.
{
$output = json_encode(array('type'=>'error', 'text' =>'Destination Name is too short or empty!'));
die($output);
}
if(strlen($user_Items)<3) // If length is less than 4 it will throw an HTTP error.
{
$output = json_encode(array('type'=>'error', 'text' =>'Item Name is too short or empty!'));
die($output);
}
if(strlen($user_Message)<5) //check emtpy message
{
$output = json_encode(array('type'=>'error', 'text' =>'Too short message! Please enter something.'));
die($output);
}
//proceed with PHP email.
$from = "xxx@xxx.com";
$headers = "From:" . $from;
$sentMail = mail("xxx@xxxx.com", $subject, $user_Message .' -'.$user_Name, $user_Email);
if($sentMail)
{
$output = json_encode(array('type'=>'message', 'text' => 'Hi '.$user_Name .' Thank you for your email'));
die($output);
}
else{
$output = json_encode(array('type'=>'error', 'text' => 'Could not send mail! Please check your PHP mail configuration.'));
die($output);
}
}
?>
Кто-нибудь, пожалуйста, помогите мне решить проблему?
Комментарии:
1. Вы не получите много отзывов от своего кода — вам лучше использовать библиотеку, подобную PHPMailer (с помощью которой вы отметили этот вопрос). Так легко
mail()
ошибиться, что не стоит использовать напрямую — только потому, что вы можете заставить его работать, не означает, что вы делаете это правильно!
Ответ №1:
Вы добавили неправильный заголовок в последний параметр mail … попробуйте это.
$sentMail = mail("xxx@xxxx.com", $subject, $user_Message .' -'.$user_Name, $headers);
Ответ №2:
$sentMail = mail("xxx@xxxx.com", $subject, $user_Message .' -'.$user_Name, $user_Email);
Параметры для функции mail следующие
mail(to, subject, message, headers (optional))
$user_Email
недопустимый заголовок.