key = $key; } public function getSubject(): string { return 'Ely.by Account change E-mail confirmation'; } public function getParams(): array { if ($this->key === null) { throw new InvalidCallException('You need to set key param first'); } return [ 'key' => $this->key, ]; } protected function getView() { return [ 'html' => '@common/emails/views/current-email-confirmation-html', 'text' => '@common/emails/views/current-email-confirmation-text', ]; } }