MediaWiki
REL1_19
|
00001 <?php 00015 class EmaillingJob extends Job { 00016 function __construct( $title, $params, $id = 0 ) { 00017 parent::__construct( 'sendMail', Title::newMainPage(), $params, $id ); 00018 } 00019 00020 function run() { 00021 UserMailer::send( 00022 $this->params['to'], 00023 $this->params['from'], 00024 $this->params['subj'], 00025 $this->params['body'], 00026 $this->params['replyto'] 00027 ); 00028 return true; 00029 } 00030 00031 }