Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1103439
PhabricatorMailAmazonSESAdapter.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
PhabricatorMailAmazonSESAdapter.php
View Options
<?php
final
class
PhabricatorMailAmazonSESAdapter
extends
PhabricatorMailPHPMailerLiteAdapter
{
const
ADAPTERTYPE
=
'ses'
;
private
$message
;
private
$isHTML
;
public
function
prepareForSend
()
{
parent
::
prepareForSend
();
$this
->
mailer
->
Mailer
=
'amazon-ses'
;
$this
->
mailer
->
customMailer
=
$this
;
}
public
function
supportsMessageIDHeader
()
{
// Amazon SES will ignore any Message-ID we provide.
return
false
;
}
protected
function
validateOptions
(
array
$options
)
{
PhutilTypeSpec
::
checkMap
(
$options
,
array
(
'access-key'
=>
'string'
,
'secret-key'
=>
'string'
,
'endpoint'
=>
'string'
,
'encoding'
=>
'string'
,
));
}
public
function
newDefaultOptions
()
{
return
array
(
'access-key'
=>
null
,
'secret-key'
=>
null
,
'endpoint'
=>
null
,
'encoding'
=>
'base64'
,
);
}
/**
* @phutil-external-symbol class SimpleEmailService
*/
public
function
executeSend
(
$body
)
{
$key
=
$this
->
getOption
(
'access-key'
);
$secret
=
$this
->
getOption
(
'secret-key'
);
$endpoint
=
$this
->
getOption
(
'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
Mon, Jun 30, 5:47 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
274696
Default Alt Text
PhabricatorMailAmazonSESAdapter.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment