使用Amazon SES发送电子邮件时出错

时间:2019-07-08 19:30:20

标签: php amazon-ec2 phpmailer amazon-ses

最近几年,我的电子邮件发送脚本运行正常。

几天前,当我运行电子邮件发送脚本时看到以下错误消息:

enter image description here

我不明白为什么我使用Amazon SES发送电子邮件时会发生这种情况,而以前从未发生过。

这里是电子邮件发送脚本代码:

    <?php
ob_start();
ini_set('memory_limit', '512M');
ECHO $document_root =   $_SERVER['DOCUMENT_ROOT'];;
require_once($document_root."wp-load.php");


function testnewcronsendmail()
{
    $mail = new PHPMailer;
    $mail->From = 'info@itsxxx.com'; // A Verified email.
    $mail->FromName = 'MYSON';

    //$mail->addAddress('ravikathait01@gmail.com');   
    $mail->addAddress('shishupal.shakya@itsxxx.com');

    $mail->isHTML(true);  

    $mail->Subject = 'test' ;
    $mail->Body    = 'test';
    var_dump($mail->ErrorInfo);
    var_dump($mail->send());
}

testnewcronsendmail();

?>

我做了一些学习,发现这是服务器相关的问题,但是我没有得到应该在服务器上纠正的问题。

任何先前遇到过此类问题的人,请向我提出解决方案。

0 个答案:

没有答案