mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
42 lines
883 B
PHP
42 lines
883 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\emails\templates;
|
|
|
|
use common\emails\Template;
|
|
use yii\base\InvalidCallException;
|
|
|
|
class ChangeEmail extends Template {
|
|
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
private $key;
|
|
|
|
public function setKey(string $key): void {
|
|
$this->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',
|
|
];
|
|
}
|
|
|
|
}
|