带有SMTP的AJAX jQuery JSON PHPMailer

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有SMTP的AJAX jQuery JSON PHPMailer相关的知识,希望对你有一定的参考价值。

下面的代码运行良好,直到托管公司阻止phpMailer。

他们告诉我可以使用SMTP instate

我编辑了下面的代码,但它仍然无效

session_cache_limiter('nocache');

header('Expires: ' . gmdate('r', 0));
header('Content-type: application/json');

include 'php-mailer/class.phpmailer.php';

$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Host = 'smtp.website.com';
$mail->Port = 25;
$mail->SMTPSecure = '';
$mail->Username = 'info@website.com';
$mail->Password = 'websitepass';

$to = 'info@website.com';
$subject = $_POST['subject'];

if($to) {

    $name = $_POST['name'];
    $email = $_POST['email'];
    $fields = array(
        0 => array(
            'text' => 'Name',
            'val' => $_POST['name']
        ),
        1 => array(
            'text' => 'Email address',
            'val' => $_POST['email']
        ),
        2 => array(
            'text' => 'Phone',
            'val' => $_POST['phone']
        ),
        3 => array(
            'text' => 'Campany',
            'val' => $_POST['cname']
        ),
        4 => array(
            'text' => 'Country',
            'val' => $_POST['ccountry']
        ),
        5 => array(
            'text' => 'Service',
            'val' => $_POST['servicetype']
        ),
        6 => array(
            'text' => 'Message',
            'val' => $_POST['message']
        )
    );
    $message = "";

    foreach($fields as $field) {
        $message .= $field['text'].": " . htmlspecialchars($field['val'], ENT_QUOTES) . "<br>
";
    }

    $headers = '';

    $headers .= 'From: ' . $name . ' <' . $email . '>' . "
";
    $headers .= "Reply-To: " .  $email . "
";
    $headers .= "MIME-Version: 1.0
";
    $headers .= "Content-Type: text/html; charset=UTF-8
";

    if (mail($to, $subject, $message, $headers)){
        $arrResult = array ('response'=>'success');
    } else{
        $arrResult = array ('response'=>'error');
    }

    echo json_encode($arrResult);

} else {
    $arrResult = array ('response'=>'error');
    echo json_encode($arrResult);
}
答案

我想你应该改变这个

由于mail是发送邮件的php函数,而不是PHPMailer函数。

if (mail($to, $subject, $message, $headers)){
    $arrResult = array ('response'=>'success');
} else{
    $arrResult = array ('response'=>'error');
}

对此:

if(!$mail->send()) {
    $arrResult = array ('response'=>'success');
} else {
    $arrResult = array ('response'=>'error');
}

确保已设置所有标头和参数,否则将无法正常工作。

我在wiki:https://github.com/PHPMailer/PHPMailer/wiki/Tutorial的教程中找到了这个send()函数

以上是关于带有SMTP的AJAX jQuery JSON PHPMailer的主要内容,如果未能解决你的问题,请参考以下文章

带有json响应的jQuery ajax请求,如何?

带有ajax的jquery-select2 multi的JSON格式

如何使用带有 json 和 php 的 jquery 的 $.ajax 函数上传文件

消息:无效的 JSON 原语:带有 Webmethod 的 ajax jquery 方法

使用 jQuery/AJAX 从 JSON 数据中过滤带有复选框的结果

带有 RESTful JSON 服务、HTML5 和 jQuery ajax 的 Java Web 框架