You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							189 lines
						
					
					
						
							5.5 KiB
						
					
					
				
			
		
		
	
	
							189 lines
						
					
					
						
							5.5 KiB
						
					
					
				| <?php | |
| /** | |
|  * @link http://www.yiiframework.com/ | |
|  * @copyright Copyright (c) 2008 Yii Software LLC | |
|  * @license http://www.yiiframework.com/license/ | |
|  */ | |
|  | |
| namespace yii\mail; | |
|  | |
| use yii\base\Component; | |
| use yii\base\InvalidConfigException; | |
| use Yii; | |
| use yii\base\ViewContextInterface; | |
|  | |
| /** | |
|  * BaseMailer provides the basic interface for the email mailer application component. | |
|  * It provides the default configuration for the email messages. | |
|  * Particular implementation of mailer should provide implementation for the [[send()]] method. | |
|  * | |
|  * @see BaseMessage | |
|  * | |
|  * @property \yii\base\View|array $view view instance or its array configuration. | |
|  * | |
|  * @author Paul Klimov <klimov.paul@gmail.com> | |
|  * @since 2.0 | |
|  */ | |
| abstract class BaseMailer extends Component implements MailerInterface, ViewContextInterface | |
| { | |
| 	/** | |
| 	 * @var \yii\base\View|array view instance or its array configuration. | |
| 	 */ | |
| 	private $_view = []; | |
| 	/** | |
| 	 * @var string directory containing view files for this email messages. | |
| 	 */ | |
| 	public $viewPath = '@app/mailviews'; | |
| 	/** | |
| 	 * @var string HTML layout view name. | |
| 	 */ | |
| 	public $htmlLayout = 'layouts/html'; | |
| 	/** | |
| 	 * @var string text layout view name. | |
| 	 */ | |
| 	public $textLayout = 'layouts/text'; | |
| 	/** | |
| 	 * @var array configuration, which should be applied by default to any new created | |
| 	 * email message instance. | |
| 	 * In addition to normal [[Yii::createObject()]] behavior extra config keys are available: | |
| 	 *  - 'from' invokes [[MessageInterface::from()]] | |
| 	 *  - 'to' invokes [[MessageInterface::to()]] | |
| 	 *  - 'cc' invokes [[MessageInterface::cc()]] | |
| 	 *  - 'bcc' invokes [[MessageInterface::bcc()]] | |
| 	 *  - 'subject' invokes [[MessageInterface::subject()]] | |
| 	 *  - 'text' invokes [[MessageInterface::text()]] | |
| 	 *  - 'html' invokes [[MessageInterface::html()]] | |
| 	 * For example: | |
| 	 * ~~~ | |
| 	 * array( | |
| 	 *     'charset' => 'UTF-8', | |
| 	 *     'from' => 'noreply@mydomain.com', | |
| 	 *     'bcc' => 'email.test@mydomain.com', | |
| 	 * ) | |
| 	 * ~~~ | |
| 	 */ | |
| 	public $messageConfig = []; | |
| 	/** | |
| 	 * @var string message default class name. | |
| 	 */ | |
| 	public $messageClass = 'yii\mail\BaseMessage'; | |
|  | |
| 	/** | |
| 	 * @param array|\yii\base\View $view view instance or its array configuration. | |
| 	 * @throws \yii\base\InvalidConfigException on invalid argument. | |
| 	 */ | |
| 	public function setView($view) | |
| 	{ | |
| 		if (!is_array($view) && !is_object($view)) { | |
| 			throw new InvalidConfigException('"' . get_class($this) . '::view" should be either object or array, "' . gettype($view) . '" given.'); | |
| 		} | |
| 		$this->_view = $view; | |
| 	} | |
|  | |
| 	/** | |
| 	 * @return \yii\base\View view instance. | |
| 	 */ | |
| 	public function getView() | |
| 	{ | |
| 		if (!is_object($this->_view)) { | |
| 			$this->_view = $this->createView($this->_view); | |
| 		} | |
| 		return $this->_view; | |
| 	} | |
|  | |
| 	/** | |
| 	 * Creates view instance from given configuration. | |
| 	 * @param array $config view configuration. | |
| 	 * @return \yii\base\View view instance. | |
| 	 */ | |
| 	protected function createView(array $config) | |
| 	{ | |
| 		if (!array_key_exists('class', $config)) { | |
| 			$config['class'] = '\yii\base\View'; | |
| 		} | |
| 		return Yii::createObject($config); | |
| 	} | |
|  | |
| 	/** | |
| 	 * Creates new message instance from given configuration. | |
| 	 * Message configuration will be merged with [[messageConfig]]. | |
| 	 * If 'class' parameter is omitted [[messageClass]], will be used. | |
| 	 * @param array $config message configuration. See [[messageConfig]] | |
| 	 * for the configuration format details. | |
| 	 * @return MessageInterface message instance. | |
| 	 */ | |
| 	public function compose(array $config = []) | |
| 	{ | |
| 		$config = array_merge($this->messageConfig, $config); | |
| 		if (!array_key_exists('class', $config)) { | |
| 			$config['class'] = $this->messageClass; | |
| 		} | |
| 		$configMethodNames = [ | |
| 			'from', | |
| 			'to', | |
| 			'cc', | |
| 			'bcc', | |
| 			'subject', | |
| 			'text', | |
| 			'html', | |
| 		]; | |
| 		$methodBasedConfig = []; | |
| 		foreach ($config as $name => $value) { | |
| 			if (in_array($name, $configMethodNames, true)) { | |
| 				$methodBasedConfig[$name] = $value; | |
| 				unset($config[$name]); | |
| 			} | |
| 		} | |
| 		$message = Yii::createObject($config); | |
| 		foreach ($methodBasedConfig as $name => $value) { | |
| 			$message->$name($value); | |
| 		} | |
| 		return $message; | |
| 	} | |
|  | |
| 	/** | |
| 	 * Sends a couple of messages at once. | |
| 	 * Note: some particular mailers may benefit from sending messages as batch, | |
| 	 * saving resources, for example on open/close connection operations, | |
| 	 * they may override this method to create their specific implementation. | |
| 	 * @param array $messages list of email messages, which should be sent. | |
| 	 * @return integer number of successful sends. | |
| 	 */ | |
| 	public function sendMultiple(array $messages) | |
| 	{ | |
| 		$successCount = 0; | |
| 		foreach ($messages as $message) { | |
| 			if ($this->send($message)) { | |
| 				$successCount++; | |
| 			} | |
| 		} | |
| 		return $successCount; | |
| 	} | |
|  | |
| 	/** | |
| 	 * Renders a view. | |
| 	 * @param string $view the view name or the path alias of the view file. | |
| 	 * @param array $params the parameters (name-value pairs) that will be extracted and made available in the view file. | |
| 	 * @param string|boolean $layout layout view name, if false given no layout will be applied. | |
| 	 * @return string the rendering result. | |
| 	 */ | |
| 	public function render($view, $params = [], $layout = false) | |
| 	{ | |
| 		$output = $this->getView()->render($view, $params, $this); | |
| 		if ($layout !== false) { | |
| 			return $this->getView()->render($layout, ['content' => $output], $this); | |
| 		} else { | |
| 			return $output; | |
| 		} | |
| 	} | |
|  | |
| 	/** | |
| 	 * Finds the view file corresponding to the specified relative view name. | |
| 	 * @param string $view a relative view name. The name does NOT start with a slash. | |
| 	 * @return string the view file path. Note that the file may not exist. | |
| 	 */ | |
| 	public function findViewFile($view) | |
| 	{ | |
| 		return Yii::getAlias($this->viewPath) . DIRECTORY_SEPARATOR . $view; | |
| 	} | |
| } |