name] */ public function __construct($to) { $this->mailer = Yii::$app->mailer; $this->to = $to; } /** * @return array|string */ public function getTo() { return $this->to; } abstract public function getSubject(): string; /** * @return array|string * @throws InvalidConfigException */ public function getFrom() { $fromEmail = Yii::$app->params['fromEmail']; if (!$fromEmail) { throw new InvalidConfigException('Please specify fromEmail app in app params'); } return [$fromEmail => 'Ely.by Accounts']; } public function getParams(): array { return []; } public function getMailer(): MailerInterface { return $this->mailer; } public function send(): void { if (!$this->createMessage()->send()) { throw new CannotSendEmailException('Unable send email.'); } } /** * @return string|array */ abstract protected function getView(); protected function createMessage(): MessageInterface { return $this->getMailer() ->compose($this->getView(), $this->getParams()) ->setTo($this->getTo()) ->setFrom($this->getFrom()) ->setSubject($this->getSubject()); } }