switching to email service

This commit is contained in:
iIronside 2023-10-18 13:12:02 +03:00
parent 233a8a6d10
commit 61085a1362
5 changed files with 88 additions and 24 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace common\models\email;
class Email
{
/**
* @var string
*/
public string $sendTo;
/**
* @var string
*/
public string $subject;
/**
* @var array
*/
public array $mailLayout;
/**
* @var array
*/
public array $params;
}

View File

@ -0,0 +1,20 @@
<?php
namespace common\models\email;
use common\models\User;
use Yii;
class RegistrationEmail extends Email
{
/**
* @param User $user
*/
public function __construct(User $user)
{
$this->sendTo = $user->email;
$this->subject = 'Account registration at ' . Yii::$app->name;
$this->mailLayout = ['html' => 'signup-html', 'text' => 'signup-text'];
$this->params = ['user' => $user];
}
}

View File

@ -0,0 +1,33 @@
<?php
namespace common\services;
use common\models\email\Email;
use Yii;
class EmailService
{
private array $sendFrom;
public function __construct()
{
$this->sendFrom = [Yii::$app->params['senderEmail'] => Yii::$app->name . ' robot'];
}
/**
* @param Email $email
* @return bool
*/
public function sendEmail(Email $email): bool
{
return Yii::$app->mailer->compose(
$email->mailLayout,
$email->params,
)
->setFrom($this->sendFrom)
->setTo($email->sendTo)
->setSubject($email->subject)
->send();
}
}

View File

@ -60,28 +60,6 @@ class SignupForm extends Model
$authorRole = $auth->getRole('user');
$auth->assign($authorRole, $user->id);
if ($user->save()) {
$this->sendEmail($user);
return $user;
} else {
return null;
}
}
/**
* Sends an email with a link, for resetting the password.
*
* @return bool whether the email was send
*/
private function sendEmail(User $user)
{
return Yii::$app->mailer->compose(
['html' => 'signup-html', 'text' => 'signup-text'],
['user' => $this]
)
->setFrom([Yii::$app->params['senderEmail'] => Yii::$app->name . ' robot'])
->setTo($user->email)
->setSubject('Account registration at ' . Yii::$app->name)
->send();
return $user->save() ? $user : null;
}
}

View File

@ -2,8 +2,9 @@
namespace frontend\modules\api\controllers;
use common\classes\Debug;
use common\models\email\RegistrationEmail;
use common\models\User;
use common\services\EmailService;
use frontend\models\SignupForm;
use Yii;
@ -16,6 +17,14 @@ class RegisterController extends ApiController
return $newBehavior;
}
private EmailService $emailService;
public function __construct($id, $module, EmailService $emailService, $config = [])
{
$this->emailService = $emailService;
parent::__construct($id, $module, $config);
}
/**
*
* @OA\Post(path="/register/sign-up",
@ -60,6 +69,7 @@ class RegisterController extends ApiController
if ($model->load(Yii::$app->getRequest()->getBodyParams(), '')) {
/** @var User $user */
if ($user = $model->signup()) {
$this->emailService->sendEmail(new RegistrationEmail($user));
return [
'id' => $user->id,
];