account = $account; parent::__construct($config); } public function getAccount() : Account { return $this->account; } public function rules() { // TODO: поверить наличие уже отправленных подтверждений смены E-mail return array_merge(parent::rules(), [ ]); } public function sendCurrentEmailConfirmation() : bool { if (!$this->validate()) { return false; } $transaction = Yii::$app->db->beginTransaction(); try { $activation = $this->createCode(); $this->sendCode($activation); $transaction->commit(); } catch (Exception $e) { $transaction->rollBack(); throw $e; } return true; } /** * @return CurrentEmailConfirmation * @throws ErrorException */ public function createCode() : CurrentEmailConfirmation { $account = $this->getAccount(); $emailActivation = new CurrentEmailConfirmation(); $emailActivation->account_id = $account->id; if (!$emailActivation->save()) { throw new ErrorException('Cannot save email activation model'); } return $emailActivation; } public function sendCode(EmailActivation $code) { /** @var \yii\swiftmailer\Mailer $mailer */ $mailer = Yii::$app->mailer; $fromEmail = Yii::$app->params['fromEmail']; if (!$fromEmail) { throw new InvalidConfigException('Please specify fromEmail app in app params'); } $acceptor = $code->account; /** @var \yii\swiftmailer\Message $message */ $message = $mailer->compose([ 'html' => '@app/mails/current-email-confirmation-html', 'text' => '@app/mails/current-email-confirmation-text', ], [ 'key' => $code->key, ]) ->setTo([$acceptor->email => $acceptor->username]) ->setFrom([$fromEmail => 'Ely.by Accounts']) ->setSubject('Ely.by Account change E-mail confirmation'); if (!$message->send()) { throw new ErrorException('Unable send email with activation code.'); } } }