3 * Classes used to send e-mails
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author <brion@pobox.com>
22 * @author <mail@tgries.de>
23 * @author Tim Starling
24 * @author Luke Welling lwelling@wikimedia.org
28 * Stores a single person's name and email address.
29 * These are passed in via the constructor, and will be returned in SMTP
30 * header format when requested.
34 * @param string|User $address string with an email address, or a User object
35 * @param string $name human-readable name if a string address is given
36 * @param string $realName human-readable real name if a string address is given
38 function __construct( $address, $name = null, $realName = null ) {
39 if ( is_object( $address ) && $address instanceof User
) {
40 $this->address
= $address->getEmail();
41 $this->name
= $address->getName();
42 $this->realName
= $address->getRealName();
44 $this->address
= strval( $address );
45 $this->name
= strval( $name );
46 $this->realName
= strval( $realName );
51 * Return formatted and quoted address to insert into SMTP headers
55 # PHP's mail() implementation under Windows is somewhat shite, and
56 # can't handle "Joe Bloggs <joe@bloggs.com>" format email addresses,
57 # so don't bother generating them
58 if ( $this->address
) {
59 if ( $this->name
!= '' && !wfIsWindows() ) {
60 global $wgEnotifUseRealName;
61 $name = ( $wgEnotifUseRealName && $this->realName
) ?
$this->realName
: $this->name
;
62 $quoted = UserMailer
::quotedPrintable( $name );
63 if ( strpos( $quoted, '.' ) !== false ||
strpos( $quoted, ',' ) !== false ) {
64 $quoted = '"' . $quoted . '"';
66 return "$quoted <{$this->address}>";
68 return $this->address
;
75 function __toString() {
76 return $this->toString();
81 * Collection of static functions for sending mail
87 * Send mail using a PEAR mailer
96 protected static function sendWithPear( $mailer, $dest, $headers, $body ) {
97 $mailResult = $mailer->send( $dest, $headers, $body );
99 # Based on the result return an error string,
100 if ( PEAR
::isError( $mailResult ) ) {
101 wfDebug( "PEAR::Mail failed: " . $mailResult->getMessage() . "\n" );
102 return Status
::newFatal( 'pear-mail-error', $mailResult->getMessage() );
104 return Status
::newGood();
109 * Creates a single string from an associative array
111 * @param array $headers Associative Array: keys are header field names,
112 * values are ... values.
113 * @param string $endl The end of line character. Defaults to "\n"
115 * Note RFC2822 says newlines must be CRLF (\r\n)
116 * but php mail naively "corrects" it and requires \n for the "correction" to work
120 static function arrayToHeaderString( $headers, $endl = "\n" ) {
122 foreach ( $headers as $name => $value ) {
123 $strings[] = "$name: $value";
125 return implode( $endl, $strings );
129 * Create a value suitable for the MessageId Header
133 static function makeMsgId() {
134 global $wgSMTP, $wgServer;
136 $msgid = uniqid( wfWikiID() . ".", true ); /* true required for cygwin */
137 if ( is_array( $wgSMTP ) && isset( $wgSMTP['IDHost'] ) && $wgSMTP['IDHost'] ) {
138 $domain = $wgSMTP['IDHost'];
140 $url = wfParseUrl( $wgServer );
141 $domain = $url['host'];
143 return "<$msgid@$domain>";
147 * This function will perform a direct (authenticated) login to
148 * a SMTP Server to use for mail relaying if 'wgSMTP' specifies an
149 * array of parameters. It requires PEAR:Mail to do that.
150 * Otherwise it just uses the standard PHP 'mail' function.
152 * @param $to MailAddress: recipient's email (or an array of them)
153 * @param $from MailAddress: sender's email
154 * @param string $subject email's subject.
155 * @param string $body email's text or Array of two strings to be the text and html bodies
156 * @param $replyto MailAddress: optional reply-to email (default: null).
157 * @param string $contentType optional custom Content-Type (default: text/plain; charset=UTF-8)
158 * @throws MWException
159 * @return Status object
161 public static function send( $to, $from, $subject, $body, $replyto = null, $contentType = 'text/plain; charset=UTF-8' ) {
162 global $wgSMTP, $wgEnotifMaxRecips, $wgAdditionalMailParams, $wgAllowHTMLEmail;
164 if ( !is_array( $to ) ) {
168 // mail body must have some content
170 // arbitrary but longer than Array or Object to detect casting error
172 // body must either be a string or an array with text and body
175 !is_array( $body ) &&
176 strlen( $body ) >= $minBodyLen
181 isset( $body['text'] ) &&
182 isset( $body['html'] ) &&
183 strlen( $body['text'] ) >= $minBodyLen &&
184 strlen( $body['html'] ) >= $minBodyLen
187 // if it is neither we have a problem
188 return Status
::newFatal( 'user-mail-no-body' );
191 if ( !$wgAllowHTMLEmail && is_array( $body ) ) {
192 // HTML not wanted. Dump it.
193 $body = $body['text'];
196 wfDebug( __METHOD__
. ': sending mail to ' . implode( ', ', $to ) . "\n" );
198 # Make sure we have at least one address
199 $has_address = false;
200 foreach ( $to as $u ) {
206 if ( !$has_address ) {
207 return Status
::newFatal( 'user-mail-no-addy' );
210 # Forge email headers
211 # -------------------
215 # DO NOT add To: or Subject: headers at this step. They need to be
216 # handled differently depending upon the mailer we are going to use.
219 # PHP mail() first argument is the mail receiver. The argument is
220 # used as a recipient destination and as a To header.
222 # PEAR mailer has a recipient argument which is only used to
223 # send the mail. If no To header is given, PEAR will set it to
224 # to 'undisclosed-recipients:'.
226 # NOTE: To: is for presentation, the actual recipient is specified
227 # by the mailer using the Rcpt-To: header.
230 # PHP mail() second argument to pass the subject, passing a Subject
231 # as an additional header will result in a duplicate header.
233 # PEAR mailer should be passed a Subject header.
237 $headers['From'] = $from->toString();
238 $headers['Return-Path'] = $from->address
;
241 $headers['Reply-To'] = $replyto->toString();
244 $headers['Date'] = MWTimestamp
::getLocalInstance()->format( 'r' );
245 $headers['Message-ID'] = self
::makeMsgId();
246 $headers['X-Mailer'] = 'MediaWiki mailer';
248 # Line endings need to be different on Unix and Windows due to
249 # the bug described at http://trac.wordpress.org/ticket/2603
250 if ( wfIsWindows() ) {
256 if ( is_array( $body ) ) {
257 // we are sending a multipart message
258 wfDebug( "Assembling multipart mime email\n" );
259 if ( !stream_resolve_include_path( 'Mail/mime.php' ) ) {
260 wfDebug( "PEAR Mail_Mime package is not installed. Falling back to text email.\n" );
261 // remove the html body for text email fall back
262 $body = $body['text'];
265 require_once 'Mail/mime.php';
266 if ( wfIsWindows() ) {
267 $body['text'] = str_replace( "\n", "\r\n", $body['text'] );
268 $body['html'] = str_replace( "\n", "\r\n", $body['html'] );
270 $mime = new Mail_mime( array( 'eol' => $endl, 'text_charset' => 'UTF-8', 'html_charset' => 'UTF-8' ) );
271 $mime->setTXTBody( $body['text'] );
272 $mime->setHTMLBody( $body['html'] );
273 $body = $mime->get(); // must call get() before headers()
274 $headers = $mime->headers( $headers );
277 if ( !isset( $mime ) ) {
278 // sending text only, either deliberately or as a fallback
279 if ( wfIsWindows() ) {
280 $body = str_replace( "\n", "\r\n", $body );
282 $headers['MIME-Version'] = '1.0';
283 $headers['Content-type'] = ( is_null( $contentType ) ?
284 'text/plain; charset=UTF-8' : $contentType );
285 $headers['Content-transfer-encoding'] = '8bit';
288 $ret = wfRunHooks( 'AlternateUserMailer', array( $headers, $to, $from, $subject, $body ) );
289 if ( $ret === false ) {
290 // the hook implementation will return false to skip regular mail sending
291 return Status
::newGood();
292 } elseif ( $ret !== true ) {
293 // the hook implementation will return a string to pass an error message
294 return Status
::newFatal( 'php-mail-error', $ret );
297 if ( is_array( $wgSMTP ) ) {
302 if ( !stream_resolve_include_path( 'Mail.php' ) ) {
303 throw new MWException( 'PEAR mail package is not installed' );
305 require_once 'Mail.php';
307 wfSuppressWarnings();
309 // Create the mail object using the Mail::factory method
310 $mail_object =& Mail
::factory( 'smtp', $wgSMTP );
311 if ( PEAR
::isError( $mail_object ) ) {
312 wfDebug( "PEAR::Mail factory failed: " . $mail_object->getMessage() . "\n" );
314 return Status
::newFatal( 'pear-mail-error', $mail_object->getMessage() );
317 wfDebug( "Sending mail via PEAR::Mail\n" );
319 $headers['Subject'] = self
::quotedPrintable( $subject );
321 # When sending only to one recipient, shows it its email using To:
322 if ( count( $to ) == 1 ) {
323 $headers['To'] = $to[0]->toString();
326 # Split jobs since SMTP servers tends to limit the maximum
327 # number of possible recipients.
328 $chunks = array_chunk( $to, $wgEnotifMaxRecips );
329 foreach ( $chunks as $chunk ) {
330 $status = self
::sendWithPear( $mail_object, $chunk, $headers, $body );
331 # FIXME : some chunks might be sent while others are not!
332 if ( !$status->isOK() ) {
338 return Status
::newGood();
343 if ( count( $to ) > 1 ) {
344 $headers['To'] = 'undisclosed-recipients:;';
346 $headers = self
::arrayToHeaderString( $headers, $endl );
348 wfDebug( "Sending mail via internal mail() function\n" );
350 self
::$mErrorString = '';
351 $html_errors = ini_get( 'html_errors' );
352 ini_set( 'html_errors', '0' );
353 set_error_handler( 'UserMailer::errorHandler' );
355 $safeMode = wfIniGetBool( 'safe_mode' );
357 foreach ( $to as $recip ) {
359 $sent = mail( $recip, self
::quotedPrintable( $subject ), $body, $headers );
361 $sent = mail( $recip, self
::quotedPrintable( $subject ), $body, $headers, $wgAdditionalMailParams );
365 restore_error_handler();
366 ini_set( 'html_errors', $html_errors );
368 if ( self
::$mErrorString ) {
369 wfDebug( "Error sending mail: " . self
::$mErrorString . "\n" );
370 return Status
::newFatal( 'php-mail-error', self
::$mErrorString );
371 } elseif ( ! $sent ) {
372 // mail function only tells if there's an error
373 wfDebug( "Unknown error sending mail\n" );
374 return Status
::newFatal( 'php-mail-error-unknown' );
376 return Status
::newGood();
382 * Set the mail error message in self::$mErrorString
384 * @param $code Integer: error number
385 * @param string $string error message
387 static function errorHandler( $code, $string ) {
388 self
::$mErrorString = preg_replace( '/^mail\(\)(\s*\[.*?\])?: /', '', $string );
392 * Converts a string into a valid RFC 822 "phrase", such as is used for the sender name
393 * @param $phrase string
396 public static function rfc822Phrase( $phrase ) {
397 $phrase = strtr( $phrase, array( "\r" => '', "\n" => '', '"' => '' ) );
398 return '"' . $phrase . '"';
402 * Converts a string into quoted-printable format
405 * From PHP5.3 there is a built in function quoted_printable_encode()
406 * This method does not duplicate that.
407 * This method is doing Q encoding inside encoded-words as defined by RFC 2047
408 * This is for email headers.
409 * The built in quoted_printable_encode() is for email bodies
412 public static function quotedPrintable( $string, $charset = '' ) {
413 # Probably incomplete; see RFC 2045
414 if ( empty( $charset ) ) {
417 $charset = strtoupper( $charset );
418 $charset = str_replace( 'ISO-8859', 'ISO8859', $charset ); // ?
420 $illegal = '\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
421 $replace = $illegal . '\t ?_';
422 if ( !preg_match( "/[$illegal]/", $string ) ) {
425 $out = "=?$charset?Q?";
426 $out .= preg_replace_callback( "/([$replace])/",
427 array( __CLASS__
, 'quotedPrintableCallback' ), $string );
432 protected static function quotedPrintableCallback( $matches ) {
433 return sprintf( "=%02X", ord( $matches[1] ) );
438 * This module processes the email notifications when the current page is
439 * changed. It looks up the table watchlist to find out which users are watching
442 * The current implementation sends independent emails to each watching user for
443 * the following reason:
445 * - Each watching user will be notified about the page edit time expressed in
446 * his/her local time (UTC is shown additionally). To achieve this, we need to
447 * find the individual timeoffset of each watching user from the preferences..
449 * Suggested improvement to slack down the number of sent emails: We could think
450 * of sending out bulk mails (bcc:user1,user2...) for all these users having the
451 * same timeoffset in their preferences.
453 * Visit the documentation pages under http://meta.wikipedia.com/Enotif
457 class EmailNotification
{
458 protected $subject, $body, $replyto, $from;
459 protected $timestamp, $summary, $minorEdit, $oldid, $composed_common, $pageStatus;
460 protected $mailTargets = array();
473 * Send emails corresponding to the user $editor editing the page $title.
474 * Also updates wl_notificationtimestamp.
476 * May be deferred via the job queue.
478 * @param $editor User object
479 * @param $title Title object
483 * @param $oldid (default: false)
484 * @param $pageStatus (default: 'changed')
486 public function notifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit, $oldid = false, $pageStatus = 'changed' ) {
487 global $wgEnotifUseJobQ, $wgEnotifWatchlist, $wgShowUpdatedMarker, $wgEnotifMinorEdits,
488 $wgUsersNotifiedOnAllChanges, $wgEnotifUserTalk;
490 if ( $title->getNamespace() < 0 ) {
494 // Build a list of users to notify
496 if ( $wgEnotifWatchlist ||
$wgShowUpdatedMarker ) {
497 $dbw = wfGetDB( DB_MASTER
);
498 $res = $dbw->select( array( 'watchlist' ),
501 'wl_user != ' . intval( $editor->getID() ),
502 'wl_namespace' => $title->getNamespace(),
503 'wl_title' => $title->getDBkey(),
504 'wl_notificationtimestamp IS NULL',
507 foreach ( $res as $row ) {
508 $watchers[] = intval( $row->wl_user
);
511 // Update wl_notificationtimestamp for all watching users except the editor
513 $dbw->onTransactionIdle(
514 function() use ( $dbw, $timestamp, $watchers, $title, $fname ) {
515 $dbw->begin( $fname );
516 $dbw->update( 'watchlist',
518 'wl_notificationtimestamp' => $dbw->timestamp( $timestamp )
519 ), array( /* WHERE */
520 'wl_user' => $watchers,
521 'wl_namespace' => $title->getNamespace(),
522 'wl_title' => $title->getDBkey(),
525 $dbw->commit( $fname );
532 // If nobody is watching the page, and there are no users notified on all changes
533 // don't bother creating a job/trying to send emails
534 // $watchers deals with $wgEnotifWatchlist
535 if ( !count( $watchers ) && !count( $wgUsersNotifiedOnAllChanges ) ) {
537 // Only send notification for non minor edits, unless $wgEnotifMinorEdits
538 if ( !$minorEdit ||
( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
539 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK
);
540 if ( $wgEnotifUserTalk && $isUserTalkPage && $this->canSendUserTalkEmail( $editor, $title, $minorEdit ) ) {
549 if ( $wgEnotifUseJobQ ) {
551 'editor' => $editor->getName(),
552 'editorID' => $editor->getID(),
553 'timestamp' => $timestamp,
554 'summary' => $summary,
555 'minorEdit' => $minorEdit,
557 'watchers' => $watchers,
558 'pageStatus' => $pageStatus
560 $job = new EnotifNotifyJob( $title, $params );
561 JobQueueGroup
::singleton()->push( $job );
563 $this->actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit, $oldid, $watchers, $pageStatus );
568 * Immediate version of notifyOnPageChange().
570 * Send emails corresponding to the user $editor editing the page $title.
571 * Also updates wl_notificationtimestamp.
573 * @param $editor User object
574 * @param $title Title object
575 * @param string $timestamp Edit timestamp
576 * @param string $summary Edit summary
577 * @param $minorEdit bool
578 * @param int $oldid Revision ID
579 * @param array $watchers of user IDs
580 * @param string $pageStatus
581 * @throws MWException
583 public function actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit,
584 $oldid, $watchers, $pageStatus = 'changed' ) {
585 # we use $wgPasswordSender as sender's address
586 global $wgEnotifWatchlist;
587 global $wgEnotifMinorEdits, $wgEnotifUserTalk;
589 wfProfileIn( __METHOD__
);
591 # The following code is only run, if several conditions are met:
592 # 1. EmailNotification for pages (other than user_talk pages) must be enabled
593 # 2. minor edits (changes) are only regarded if the global flag indicates so
595 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK
);
597 $this->title
= $title;
598 $this->timestamp
= $timestamp;
599 $this->summary
= $summary;
600 $this->minorEdit
= $minorEdit;
601 $this->oldid
= $oldid;
602 $this->editor
= $editor;
603 $this->composed_common
= false;
604 $this->pageStatus
= $pageStatus;
606 $formattedPageStatus = array( 'deleted', 'created', 'moved', 'restored', 'changed' );
608 wfRunHooks( 'UpdateUserMailerFormattedPageStatus', array( &$formattedPageStatus ) );
609 if ( !in_array( $this->pageStatus
, $formattedPageStatus ) ) {
610 wfProfileOut( __METHOD__
);
611 throw new MWException( 'Not a valid page status!' );
616 if ( !$minorEdit ||
( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
618 if ( $wgEnotifUserTalk && $isUserTalkPage && $this->canSendUserTalkEmail( $editor, $title, $minorEdit ) ) {
619 $targetUser = User
::newFromName( $title->getText() );
620 $this->compose( $targetUser );
621 $userTalkId = $targetUser->getId();
624 if ( $wgEnotifWatchlist ) {
625 // Send updates to watchers other than the current editor
626 $userArray = UserArray
::newFromIDs( $watchers );
627 foreach ( $userArray as $watchingUser ) {
628 if ( $watchingUser->getOption( 'enotifwatchlistpages' ) &&
629 ( !$minorEdit ||
$watchingUser->getOption( 'enotifminoredits' ) ) &&
630 $watchingUser->isEmailConfirmed() &&
631 $watchingUser->getID() != $userTalkId )
633 $this->compose( $watchingUser );
639 global $wgUsersNotifiedOnAllChanges;
640 foreach ( $wgUsersNotifiedOnAllChanges as $name ) {
641 if ( $editor->getName() == $name ) {
642 // No point notifying the user that actually made the change!
645 $user = User
::newFromName( $name );
646 $this->compose( $user );
650 wfProfileOut( __METHOD__
);
654 * @param $editor User
655 * @param $title Title bool
659 private function canSendUserTalkEmail( $editor, $title, $minorEdit ) {
660 global $wgEnotifUserTalk;
661 $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK
);
663 if ( $wgEnotifUserTalk && $isUserTalkPage ) {
664 $targetUser = User
::newFromName( $title->getText() );
666 if ( !$targetUser ||
$targetUser->isAnon() ) {
667 wfDebug( __METHOD__
. ": user talk page edited, but user does not exist\n" );
668 } elseif ( $targetUser->getId() == $editor->getId() ) {
669 wfDebug( __METHOD__
. ": user edited their own talk page, no notification sent\n" );
670 } elseif ( $targetUser->getOption( 'enotifusertalkpages' ) &&
671 ( !$minorEdit ||
$targetUser->getOption( 'enotifminoredits' ) ) )
673 if ( !$targetUser->isEmailConfirmed() ) {
674 wfDebug( __METHOD__
. ": talk page owner doesn't have validated email\n" );
675 } elseif ( !wfRunHooks( 'AbortTalkPageEmailNotification', array( $targetUser, $title ) ) ) {
676 wfDebug( __METHOD__
. ": talk page update notification is aborted for this user\n" );
678 wfDebug( __METHOD__
. ": sending talk page update notification\n" );
682 wfDebug( __METHOD__
. ": talk page owner doesn't want notifications\n" );
689 * Generate the generic "this page has been changed" e-mail text.
691 private function composeCommonMailtext() {
692 global $wgPasswordSender, $wgPasswordSenderName, $wgNoReplyAddress;
693 global $wgEnotifFromEditor, $wgEnotifRevealEditorAddress;
694 global $wgEnotifImpersonal, $wgEnotifUseRealName;
696 $this->composed_common
= true;
698 # You as the WikiAdmin and Sysops can make use of plenty of
699 # named variables when composing your notification emails while
700 # simply editing the Meta pages
703 $postTransformKeys = array();
704 $pageTitleUrl = $this->title
->getCanonicalURL();
705 $pageTitle = $this->title
->getPrefixedText();
707 if ( $this->oldid
) {
708 // Always show a link to the diff which triggered the mail. See bug 32210.
709 $keys['$NEWPAGE'] = "\n\n" . wfMessage( 'enotif_lastdiff',
710 $this->title
->getCanonicalURL( array( 'diff' => 'next', 'oldid' => $this->oldid
) ) )
711 ->inContentLanguage()->text();
713 if ( !$wgEnotifImpersonal ) {
714 // For personal mail, also show a link to the diff of all changes
715 // since last visited.
716 $keys['$NEWPAGE'] .= "\n\n" . wfMessage( 'enotif_lastvisited',
717 $this->title
->getCanonicalURL( array( 'diff' => '0', 'oldid' => $this->oldid
) ) )
718 ->inContentLanguage()->text();
720 $keys['$OLDID'] = $this->oldid
;
721 // @deprecated Remove in MediaWiki 1.23.
722 $keys['$CHANGEDORCREATED'] = wfMessage( 'changed' )->inContentLanguage()->text();
724 # clear $OLDID placeholder in the message template
725 $keys['$OLDID'] = '';
726 $keys['$NEWPAGE'] = '';
727 // @deprecated Remove in MediaWiki 1.23.
728 $keys['$CHANGEDORCREATED'] = wfMessage( 'created' )->inContentLanguage()->text();
731 $keys['$PAGETITLE'] = $this->title
->getPrefixedText();
732 $keys['$PAGETITLE_URL'] = $this->title
->getCanonicalURL();
733 $keys['$PAGEMINOREDIT'] = $this->minorEdit ?
734 wfMessage( 'minoredit' )->inContentLanguage()->text() : '';
735 $keys['$UNWATCHURL'] = $this->title
->getCanonicalURL( 'action=unwatch' );
737 if ( $this->editor
->isAnon() ) {
738 # real anon (user:xxx.xxx.xxx.xxx)
739 $keys['$PAGEEDITOR'] = wfMessage( 'enotif_anon_editor', $this->editor
->getName() )
740 ->inContentLanguage()->text();
741 $keys['$PAGEEDITOR_EMAIL'] = wfMessage( 'noemailtitle' )->inContentLanguage()->text();
744 $keys['$PAGEEDITOR'] = $wgEnotifUseRealName ?
$this->editor
->getRealName() : $this->editor
->getName();
745 $emailPage = SpecialPage
::getSafeTitleFor( 'Emailuser', $this->editor
->getName() );
746 $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getCanonicalURL();
749 $keys['$PAGEEDITOR_WIKI'] = $this->editor
->getUserPage()->getCanonicalURL();
751 # Replace this after transforming the message, bug 35019
752 $postTransformKeys['$PAGESUMMARY'] = $this->summary
== '' ?
' - ' : $this->summary
;
754 # Now build message's subject and body
755 $this->subject
= wfMessage( 'enotif_subject_' . $this->pageStatus
)->inContentLanguage()
756 ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
758 $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus
)
759 ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
762 $body = wfMessage( 'enotif_body' )->inContentLanguage()->plain();
763 $body = strtr( $body, $keys );
764 $body = MessageCache
::singleton()->transform( $body, false, null, $this->title
);
765 $this->body
= wordwrap( strtr( $body, $postTransformKeys ), 72 );
767 # Reveal the page editor's address as REPLY-TO address only if
768 # the user has not opted-out and the option is enabled at the
769 # global configuration level.
770 $adminAddress = new MailAddress( $wgPasswordSender, $wgPasswordSenderName );
771 if ( $wgEnotifRevealEditorAddress
772 && ( $this->editor
->getEmail() != '' )
773 && $this->editor
->getOption( 'enotifrevealaddr' ) )
775 $editorAddress = new MailAddress( $this->editor
);
776 if ( $wgEnotifFromEditor ) {
777 $this->from
= $editorAddress;
779 $this->from
= $adminAddress;
780 $this->replyto
= $editorAddress;
783 $this->from
= $adminAddress;
784 $this->replyto
= new MailAddress( $wgNoReplyAddress );
789 * Compose a mail to a given user and either queue it for sending, or send it now,
790 * depending on settings.
792 * Call sendMails() to send any mails that were queued.
795 function compose( $user ) {
796 global $wgEnotifImpersonal;
798 if ( !$this->composed_common
) {
799 $this->composeCommonMailtext();
802 if ( $wgEnotifImpersonal ) {
803 $this->mailTargets
[] = new MailAddress( $user );
805 $this->sendPersonalised( $user );
810 * Send any queued mails
812 function sendMails() {
813 global $wgEnotifImpersonal;
814 if ( $wgEnotifImpersonal ) {
815 $this->sendImpersonal( $this->mailTargets
);
820 * Does the per-user customizations to a notification e-mail (name,
821 * timestamp in proper timezone, etc) and sends it out.
822 * Returns true if the mail was sent successfully.
824 * @param $watchingUser User object
828 function sendPersonalised( $watchingUser ) {
829 global $wgContLang, $wgEnotifUseRealName;
830 // From the PHP manual:
831 // Note: The to parameter cannot be an address in the form of "Something <someone@example.com>".
832 // The mail command will not parse this properly while talking with the MTA.
833 $to = new MailAddress( $watchingUser );
835 # $PAGEEDITDATE is the time and date of the page change
836 # expressed in terms of individual local time of the notification
837 # recipient, i.e. watching user
839 array( '$WATCHINGUSERNAME',
842 array( $wgEnotifUseRealName ?
$watchingUser->getRealName() : $watchingUser->getName(),
843 $wgContLang->userDate( $this->timestamp
, $watchingUser ),
844 $wgContLang->userTime( $this->timestamp
, $watchingUser ) ),
847 return UserMailer
::send( $to, $this->from
, $this->subject
, $body, $this->replyto
);
851 * Same as sendPersonalised but does impersonal mail suitable for bulk
852 * mailing. Takes an array of MailAddress objects.
853 * @param $addresses array
854 * @return Status|null
856 function sendImpersonal( $addresses ) {
859 if ( empty( $addresses ) ) {
864 array( '$WATCHINGUSERNAME',
867 array( wfMessage( 'enotif_impersonal_salutation' )->inContentLanguage()->text(),
868 $wgContLang->date( $this->timestamp
, false, false ),
869 $wgContLang->time( $this->timestamp
, false, false ) ),
872 return UserMailer
::send( $addresses, $this->from
, $this->subject
, $body, $this->replyto
);
875 } # end of class EmailNotification