当我尝试发送电子邮件时,Amazon SES 抛出错误 500

时间:2021-01-03 18:25:12

标签: amazon-web-services amazon-ec2 amazon-ses

我已经在我的 ec2 实例上设置了 Amazon SES,如此link

当我在 ec2 实例的终端上使用命令 php teste.php 时,测试文件工作正常并发送电子邮件,问题是当我尝试发出请求以访问此文件并发送电子邮件时,它抛出错误 500,我不知道如何修复它。

这是 chrome 上的错误消息:

enter image description here

和失眠症:

enter image description here

这是我的测试文件:

<?php

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

// location of your Composer autoload.php file.
require '../../../home/ec2-user/vendor/autoload.php';

$sender = 'email@email.com';
$senderName = 'Teste';
$recipient = 'email@email.com';
$usernameSmtp = '[removed for security]';
$passwordSmtp = '[removed for security]';
$host = 'email-smtp.sa-east-1.amazonaws.com';
$port = 587;
$subject = 'Amazon SES test (SMTP interface accessed using PHP)';
$bodyText =  "Email Test\r\nThis email was sent through the
Amazon SES SMTP interface using the PHPMailer class.";

$bodyHtml = '<h1>Email Test</h1>
<p>This email was sent through the
<a href="https://aws.amazon.com/ses">Amazon SES</a> SMTP
interface using the <a href="https://github.com/PHPMailer/PHPMailer">
PHPMailer</a> class.</p>';

$mail = new PHPMailer(true);

try {
  $mail->isSMTP();
  $mail->setFrom($sender, $senderName);
  $mail->Username   = $usernameSmtp;
  $mail->Password   = $passwordSmtp;
  $mail->Host       = $host;
  $mail->Port       = $port;
  $mail->SMTPAuth   = true;
  $mail->SMTPSecure = 'tls';
  $mail->addCustomHeader('X-SES-CONFIGURATION-SET');
  $mail->addAddress($recipient);
  $mail->isHTML(true);
  $mail->Subject    = $subject;
  $mail->Body       = $bodyHtml;
  $mail->AltBody    = $bodyText;
  $mail->Send();
echo "Email sent!", PHP_EOL;
} catch (phpmailerException $e) {
  echo "An error occurred. {$e->errorMessage()}", PHP_EOL;
} catch (Exception $e) {
  echo "Email not sent. {$mail->ErrorInfo}", PHP_EOL;
}

1 个答案:

答案 0 :(得分:1)

您需要在实例的安全组上打开端口 587 才能使其工作。

aws developer form

上提出的类似问题

编辑

使用 SSL

    $mail->Host = 'ssl://email-smtp.sa-east-1.amazonaws.com';
    $mail->SMTPSecure = 'tls';
    $mail->Port = 443;