MediaWiki REL1_39
|
Collection of static functions for sending mail. More...
Static Public Member Functions | |
static | quotedPrintable ( $string, $charset='') |
Converts a string into quoted-printable format. | |
static | rfc822Phrase ( $phrase) |
Converts a string into a valid RFC 822 "phrase", such as is used for the sender name. | |
static | sanitizeHeaderValue ( $val) |
Strips bad characters from a header value to prevent PHP mail header injection attacks. | |
static | send ( $to, $from, $subject, $body, $options=[]) |
This function will perform a direct (authenticated) login to a SMTP Server to use for mail relaying if 'wgSMTP' specifies an array of parameters. | |
Static Protected Member Functions | |
static | sendInternal (array $to, MailAddress $from, $subject, $body, $options=[]) |
Helper function fo UserMailer::send() which does the actual sending. | |
static | sendWithPear ( $mailer, $dest, $headers, $body) |
Send mail using a PEAR mailer. | |
Collection of static functions for sending mail.
Definition at line 35 of file UserMailer.php.
|
static |
Converts a string into quoted-printable format.
From PHP5.3 there is a built in function quoted_printable_encode() This method does not duplicate that. This method is doing Q encoding inside encoded-words as defined by RFC 2047 This is for email headers. The built in quoted_printable_encode() is for email bodies
string | $string | |
string | $charset |
Definition at line 498 of file UserMailer.php.
References $matches.
|
static |
Converts a string into a valid RFC 822 "phrase", such as is used for the sender name.
string | $phrase |
Definition at line 477 of file UserMailer.php.
|
static |
Strips bad characters from a header value to prevent PHP mail header injection attacks.
string | $val | String to be sanitized |
Definition at line 468 of file UserMailer.php.
|
static |
This function will perform a direct (authenticated) login to a SMTP Server to use for mail relaying if 'wgSMTP' specifies an array of parameters.
It requires PEAR:Mail to do that. Otherwise it just uses the standard PHP 'mail' function.
MailAddress | MailAddress[] | $to | Recipient's email (or an array of them) |
MailAddress | $from | Sender's email |
string | $subject | Email's subject. |
string | string[] | $body | Email's text or Array of two strings to be the text and html bodies |
array | $options | Keys: 'replyTo' MailAddress 'contentType' string default 'text/plain; charset=UTF-8' 'headers' array Extra headers to set |
MWException | |
Exception |
Definition at line 98 of file UserMailer.php.
References wfDebug().
|
staticprotected |
Helper function fo UserMailer::send() which does the actual sending.
It expects a $to list which the UserMailerSplitTo hook would not split further.
MailAddress[] | $to | Array of recipients' email addresses |
MailAddress | $from | Sender's email |
string | $subject | Email's subject. |
string | string[] | $body | Email's text or Array of two strings to be the text and html bodies |
array | $options | Keys: 'replyTo' MailAddress 'contentType' string default 'text/plain; charset=UTF-8' 'headers' array Extra headers to set |
MWException | |
Exception |
Definition at line 222 of file UserMailer.php.
References $mime, SpecialPage\getTitleFor(), PROTO_CANONICAL, MailAddress\toString(), wfDebug(), and wfIsWindows().
|
staticprotected |
Send mail using a PEAR mailer.
Mail_smtp | $mailer | |
string[] | string | $dest | |
array | $headers | |
string | $body |
Definition at line 48 of file UserMailer.php.
References wfDebug().