Newer
Older
Import / web / www.xiaofrog.com / wiki / includes / EmaillingJob.php
<?php

/**
 * Old job used for sending single notification emails;
 * kept for backwards-compatibility
 */
class EmaillingJob extends Job {

	function __construct( $title, $params, $id = 0 ) {
		parent::__construct( 'sendMail', Title::newMainPage(), $params, $id );
	}

	function run() {
		userMailer(
			$this->params['to'],
			$this->params['from'],
			$this->params['subj'],
			$this->params['body'],
			$this->params['replyto']
		);
		return true;
	}
	
}