Page MenuHomePhabricator
Paste P2082

PhlabAmazonSESMailImplementationAdapter.php
ActivePublic

Authored by joshuaspence on Dec 28 2017, 2:08 AM.
Tags
None
Referenced Files
F5342583: PhlabAmazonSESMailImplementationAdapter.php
Dec 28 2017, 2:08 AM
Subscribers
None
<?php
/**
* This mail adapter is similar to
* @{class:PhabricatorMailImplementationAmazonSESAdapter}, but supports the use
* of [[http://docs.aws.amazon.com/STS/latest/UsingSTS/Welcome.html |
* IAM credentials]].
*
* This file engine uses [[http://aws.amazon.com/sdk-for-php/ | aws-sdk-php]]
* to interact with [[http://aws.amazon.com/ | Amazon Web Services]].
*
* @todo This class will be obsolete after https://secure.phabricator.com/T5155.
*/
final class PhlabAmazonSESMailImplementationAdapter
extends PhabricatorMailImplementationPHPMailerLiteAdapter {
// We pin the API version so our code will not be affected by a breaking
// change made to the service
const API_VERSION = '2010-12-01';
private $message;
private $isHTML;
public function __construct() {
parent::__construct();
$this->mailer->Mailer = 'amazon-ses';
$this->mailer->customMailer = $this;
}
public function supportsMessageIDHeader() {
// Amazon SES will ignore any Message-ID we provide.
return false;
}
/**
* @phutil-external-symbol class Aws\Ses\SesClient
*/
public function executeSend($body) {
// Instead of introducing new config option, we use the endpoint config for
// @{class:PhabricatorMailImplementationAmazonSESAdapter} to get region
// information. So it will be eaiser for us to migrate our code later.
$endpoint = PhabricatorEnv::getEnvConfig('amazon-ses.endpoint');
if (!$endpoint) {
throw new Exception(
pht(
"Configure '%s' to use Amazon SES for mail delivery.",
'amazon-ses.endpoint'));
}
$region = idx(explode('.', $endpoint), 1);
$client = new Aws\Ses\SesClient([
'region' => $region,
'version' => self::API_VERSION,
]);
return $client->sendRawEmail([
'RawMessage' => [
'Data' => $body,
],
]);
}
}