|  |  |  | <?php
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * EmailTarget class file.
 | 
					
						
							|  |  |  |  *
 | 
					
						
							|  |  |  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | 
					
						
							|  |  |  |  * @link http://www.yiiframework.com/
 | 
					
						
							|  |  |  |  * @copyright Copyright © 2008-2012 Yii Software LLC
 | 
					
						
							|  |  |  |  * @license http://www.yiiframework.com/license/
 | 
					
						
							|  |  |  |  */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace yii\logging;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * EmailTarget sends selected log messages to the specified email addresses.
 | 
					
						
							|  |  |  |  *
 | 
					
						
							|  |  |  |  * The target email addresses may be specified via [[emails]] property.
 | 
					
						
							|  |  |  |  * Optionally, you may set the email [[subject]], [[sentFrom]] address and
 | 
					
						
							|  |  |  |  * additional [[headers]].
 | 
					
						
							|  |  |  |  *
 | 
					
						
							|  |  |  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | 
					
						
							|  |  |  |  * @since 2.0
 | 
					
						
							|  |  |  |  */
 | 
					
						
							|  |  |  | class EmailTarget extends Target
 | 
					
						
							|  |  |  | {
 | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * @var array list of destination email addresses.
 | 
					
						
							|  |  |  | 	 */
 | 
					
						
							|  |  |  | 	public $emails = array();
 | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * @var string email subject
 | 
					
						
							|  |  |  | 	 */
 | 
					
						
							|  |  |  | 	public $subject;
 | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * @var string email sent-from address
 | 
					
						
							|  |  |  | 	 */
 | 
					
						
							|  |  |  | 	public $sentFrom;
 | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * @var array list of additional headers to use when sending an email.
 | 
					
						
							|  |  |  | 	 */
 | 
					
						
							|  |  |  | 	public $headers = array();
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * Sends log [[messages]] to specified email addresses.
 | 
					
						
							|  |  |  | 	 * @param boolean $final whether this method is called at the end of the current application
 | 
					
						
							|  |  |  | 	 */
 | 
					
						
							|  |  |  | 	public function exportMessages($final)
 | 
					
						
							|  |  |  | 	{
 | 
					
						
							|  |  |  | 		$body = '';
 | 
					
						
							|  |  |  | 		foreach ($this->messages as $message) {
 | 
					
						
							|  |  |  | 			$body .= $this->formatMessage($message);
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		$body = wordwrap($body, 70);
 | 
					
						
							|  |  |  | 		$subject = $this->subject === null ? Yii::t('yii', 'Application Log') : $this->subject;
 | 
					
						
							|  |  |  | 		foreach ($this->emails as $email) {
 | 
					
						
							|  |  |  | 			$this->sendEmail($subject, $body, $email, $this->sentFrom, $this->headers);
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->messages = array();
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * Sends an email.
 | 
					
						
							|  |  |  | 	 * @param string $subject email subject
 | 
					
						
							|  |  |  | 	 * @param string $body email body
 | 
					
						
							|  |  |  | 	 * @param string $sentTo sent-to email address
 | 
					
						
							|  |  |  | 	 * @param string $sentFrom sent-from email address
 | 
					
						
							|  |  |  | 	 * @param array $headers additional headers to be used when sending the email
 | 
					
						
							|  |  |  | 	 */
 | 
					
						
							|  |  |  | 	protected function sendEmail($subject, $body, $sentTo, $sentFrom, $headers)
 | 
					
						
							|  |  |  | 	{
 | 
					
						
							|  |  |  | 		if ($sentFrom !== null) {
 | 
					
						
							|  |  |  | 			$headers[] = "From:  {$sentFrom}";
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		mail($email, $subject, $body, implode("\r\n", $headers));
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |