Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F468822
PhabricatorMailImplementationAmazonSESAdapter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorMailImplementationAmazonSESAdapter.php
View Options
<?php
final
class
PhabricatorMailImplementationAmazonSESAdapter
extends
PhabricatorMailImplementationPHPMailerLiteAdapter
{
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 SimpleEmailService
*/
public
function
executeSend
(
$body
)
{
$key
=
PhabricatorEnv
::
getEnvConfig
(
'amazon-ses.access-key'
);
$secret
=
PhabricatorEnv
::
getEnvConfig
(
'amazon-ses.secret-key'
);
$endpoint
=
PhabricatorEnv
::
getEnvConfig
(
'amazon-ses.endpoint'
);
$root
=
phutil_get_library_root
(
'phabricator'
);
$root
=
dirname
(
$root
);
require_once
$root
.
'/externals/amazon-ses/ses.php'
;
$service
=
new
SimpleEmailService
(
$key
,
$secret
,
$endpoint
);
$service
->
enableUseExceptions
(
true
);
return
$service
->
sendRawEmail
(
$body
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 6:43 AM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
80952
Default Alt Text
PhabricatorMailImplementationAmazonSESAdapter.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment