AWS Электронная почта SES SMTP работает. AWS SES API не отправляет электронную почту - PullRequest
1 голос
/ 19 июня 2020

Я использую AWS SES на веб-сайте с платформой общего хостинга (не на AWS)

Когда я отправляю электронные письма с помощью SMTP, он работает отлично. Когда я пытаюсь вызвать и использовать API, электронное письмо не отправляется, сообщение об ошибке не приходит.

Есть две причины, по которым я хочу использовать API вместо SMTP 1) Согласно Amazon, API работает быстрее . 2) Одно из моих транзакционных писем - это напоминание клиентам о необходимости войти в систему и / или оплатить свой счет. SMTP не может отправлять электронную почту более чем на 50 (если не ошибаюсь). По этой причине мне нужно вызвать SendRawEmail.

Пожалуйста, помогите мне с моим кодом для отправки электронной почты и реализации SendRawEmail

Вот мой код: require ('PHPMailer / PHPMailerAutoload. php');

use Aws\Ses\SesClient;
use Aws\Exception\AwsException;


// Create an SesClient. Change the value of the region parameter if you're 
// using an AWS Region other than US West (Oregon). Change the value of the
// profile parameter if you want to use a profile in your credentials file
// other than the default.
$SesClient = new SesClient([
'profile' => 'default',
'version' => '2010-12-01',
'region'  => 'eu-central-1'
]);

// Replace sender@example.com with your "From" address.
// This address must be verified with Amazon SES.
$sender_email = 'info@mydomain.com';

// Replace these sample addresses with the addresses of your recipients. If
// your account is still in the sandbox, these addresses must be verified.
$recipient_emails = ['info@example.com'];

// Specify a configuration set. If you do not want to use a configuration
// set, comment the following variable, and the
// 'ConfigurationSetName' => $configuration_set argument below.
//$configuration_set = 'ConfigSet';

$subject = 'Amazon SES test (AWS SDK for PHP)';
$plaintext_body = 'This email was sent with Amazon SES using the AWS SDK for PHP.' ;
$html_body =  '<h1>AWS Amazon Simple Email Service Test Email</h1>'.
          '<p>This email was sent with <a href="https://aws.amazon.com/ses/">'.
          'Amazon SES</a> using the <a href="https://aws.amazon.com/sdk-for-php/">'.
          'AWS SDK for PHP</a>.</p>';
$char_set = 'UTF-8';

try {
$result = $SesClient->sendEmail([
    'Destination' => [
        'ToAddresses' => $recipient_emails,
    ],
    'ReplyToAddresses' => [$sender_email],
    'Source' => $sender_email,
    'Message' => [
      'Body' => [
          'Html' => [
              'Charset' => $char_set,
              'Data' => $html_body,
          ],
          'Text' => [
              'Charset' => $char_set,
              'Data' => $plaintext_body,
          ],
      ],
      'Subject' => [
          'Charset' => $char_set,
          'Data' => $subject,
      ],
    ],
    // If you aren't using a configuration set, comment or delete the
    // following line
    'ConfigurationSetName' => $configuration_set,
]);
$messageId = $result['MessageId'];
echo("Email sent! Message ID: $messageId"."\n");
} catch (AwsException $e) {
// output error message if fails
echo $e->getMessage();
echo("The email was not sent. Error message: ".$e->getAwsErrorMessage()."\n");
echo "\n";
}

?>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...