MediaWiki  1.27.2
UserMailer Class Reference

Collection of static functions for sending mail. More...

Static Public Member Functions

static arrayToHeaderString ($headers, $endl=PHP_EOL)
 Creates a single string from an associative array. More...
 
static errorHandler ($code, $string)
 Set the mail error message in self::$mErrorString. More...
 
static makeMsgId ()
 Create a value suitable for the MessageId Header. More...
 
static quotedPrintable ($string, $charset= '')
 Converts a string into quoted-printable format. More...
 
static rfc822Phrase ($phrase)
 Converts a string into a valid RFC 822 "phrase", such as is used for the sender name. More...
 
static sanitizeHeaderValue ($val)
 Strips bad characters from a header value to prevent PHP mail header injection attacks. More...
 
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. More...
 

Static Protected Member Functions

static sendInternal (array $to, MailAddress $from, $subject, $body, $options=[])
 Helper function fo UserMailer::send() which does the actual sending. More...
 
static sendWithPear ($mailer, $dest, $headers, $body)
 Send mail using a PEAR mailer. More...
 

Static Private Attributes

static $mErrorString
 

Detailed Description

Collection of static functions for sending mail.

Definition at line 30 of file UserMailer.php.

Member Function Documentation

static UserMailer::arrayToHeaderString (   $headers,
  $endl = PHP_EOL 
)
static

Creates a single string from an associative array.

Parameters
array$headersAssociative Array: keys are header field names, values are ... values.
string$endlThe end of line character. Defaults to "\\n"

Note RFC2822 says newlines must be CRLF (\r\n) but php mail naively "corrects" it and requires \n for the "correction" to work

Returns
string

Definition at line 67 of file UserMailer.php.

References $name, $value, and as.

static UserMailer::errorHandler (   $code,
  $string 
)
static

Set the mail error message in self::$mErrorString.

Parameters
int$codeError number
string$stringError message

Definition at line 446 of file UserMailer.php.

static UserMailer::makeMsgId ( )
static

Create a value suitable for the MessageId Header.

Returns
string

Definition at line 82 of file UserMailer.php.

References $wgServer, $wgSMTP, global, wfParseUrl(), and wfWikiID().

static UserMailer::quotedPrintable (   $string,
  $charset = '' 
)
static

Converts a string into quoted-printable format.

Since
1.17

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

Parameters
string$string
string$charset
Returns
string

Definition at line 485 of file UserMailer.php.

References $matches, and $out.

Referenced by UserMailerTest\testQuotedPrintable(), and MailAddress\toString().

static UserMailer::rfc822Phrase (   $phrase)
static

Converts a string into a valid RFC 822 "phrase", such as is used for the sender name.

Parameters
string$phrase
Returns
string

Definition at line 464 of file UserMailer.php.

static UserMailer::sanitizeHeaderValue (   $val)
static

Strips bad characters from a header value to prevent PHP mail header injection attacks.

Parameters
string$valString to be santizied
Returns
string

Definition at line 455 of file UserMailer.php.

static UserMailer::send (   $to,
  $from,
  $subject,
  $body,
  $options = [] 
)
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.

Parameters
MailAddress|MailAddress[]$to Recipient's email (or an array of them)
MailAddress$fromSender's email
string$subjectEmail's subject.
string$bodyEmail's text or Array of two strings to be the text and html bodies
array$options,'replyTo' MailAddress 'contentType' string default 'text/plain; charset=UTF-8' 'headers' array Extra headers to set
Exceptions
MWException
Exception
Returns
Status

Definition at line 114 of file UserMailer.php.

References $from, $options, $status, $wgAllowHTMLEmail, as, global, Status\newFatal(), Status\newGood(), Hooks\run(), sendInternal(), and wfDebug().

Referenced by EmaillingJob\run(), EmailNotification\sendImpersonal(), User\sendMail(), EmailNotification\sendPersonalised(), and SpecialEmailUser\submit().

static UserMailer::sendInternal ( array  $to,
MailAddress  $from,
  $subject,
  $body,
  $options = [] 
)
staticprotected

Helper function fo UserMailer::send() which does the actual sending.

It expects a $to list which the UserMailerSplitTo hook would not split further.

Parameters
MailAddress[]$to Array of recipients' email addresses
MailAddress$fromSender's email
string$subjectEmail's subject.
string$bodyEmail's text or Array of two strings to be the text and html bodies
array$options,'replyTo' MailAddress 'contentType' string default 'text/plain; charset=UTF-8' 'headers' array Extra headers to set
Exceptions
MWException
Exception
Returns
Status

Definition at line 208 of file UserMailer.php.

References $e, $mime, $options, $ret, $status, $wgAdditionalMailParams, $wgEnotifMaxRecips, $wgSMTP, as, MWTimestamp\getLocalInstance(), SpecialPage\getTitleFor(), global, mail, Status\newFatal(), Status\newGood(), PROTO_CANONICAL, Hooks\run(), MailAddress\toString(), wfDebug(), and wfIsWindows().

Referenced by send().

static UserMailer::sendWithPear (   $mailer,
  $dest,
  $headers,
  $body 
)
staticprotected

Send mail using a PEAR mailer.

Parameters
Mail_smtp$mailer
string$dest
string$headers
string$body
Returns
Status

Definition at line 43 of file UserMailer.php.

References Status\newFatal(), Status\newGood(), and wfDebug().

Member Data Documentation

UserMailer::$mErrorString
staticprivate

Definition at line 31 of file UserMailer.php.


The documentation for this class was generated from the following file: