Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1063020
PhabricatorMailImplementationAdapter.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
PhabricatorMailImplementationAdapter.php
View Options
<?php
abstract
class
PhabricatorMailImplementationAdapter
extends
Phobject
{
abstract
public
function
setFrom
(
$email
,
$name
=
''
);
abstract
public
function
addReplyTo
(
$email
,
$name
=
''
);
abstract
public
function
addTos
(
array
$emails
);
abstract
public
function
addCCs
(
array
$emails
);
abstract
public
function
addAttachment
(
$data
,
$filename
,
$mimetype
);
abstract
public
function
addHeader
(
$header_name
,
$header_value
);
abstract
public
function
setBody
(
$plaintext_body
);
abstract
public
function
setHTMLBody
(
$html_body
);
abstract
public
function
setSubject
(
$subject
);
/**
* Some mailers, notably Amazon SES, do not support us setting a specific
* Message-ID header.
*/
abstract
public
function
supportsMessageIDHeader
();
/**
* Send the message. Generally, this means connecting to some service and
* handing data to it.
*
* If the adapter determines that the mail will never be deliverable, it
* should throw a @{class:PhabricatorMetaMTAPermanentFailureException}.
*
* For temporary failures, throw some other exception or return `false`.
*
* @return bool True on success.
*/
abstract
public
function
send
();
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jun 29, 10:20 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
259118
Default Alt Text
PhabricatorMailImplementationAdapter.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment