* symfony 6.3: removed sensio/framework-extra-bundle * symfony 6.3: update * Symfony 6.3.1 update * chore: composer up * symfony 6.4 update * cs: php-code-fixer update * fix composer.lock * add php-http required dependencies * Fix Stan and CS --------- Co-authored-by: Jérôme Tanghe <jerome.tanghe@les-tilleuls.coop>
59 lines
1.8 KiB
PHP
59 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Mailer\Email\Command;
|
|
|
|
use App\Controller\i18nTrait;
|
|
use App\Entity\ServiceRequest;
|
|
use App\Entity\User;
|
|
use App\Mailer\AppMailer;
|
|
use App\Mailer\Email\EmailInterface;
|
|
use App\Mailer\Email\EmailTrait;
|
|
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
|
|
use Symfony\Component\DependencyInjection\Attribute\Autowire;
|
|
use Symfony\Component\Mime\Email;
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
use Webmozart\Assert\Assert;
|
|
|
|
/**
|
|
* Service request is about to end (tomorrow).
|
|
*/
|
|
final class NotifyServiceRequestEndEmail implements EmailInterface
|
|
{
|
|
use EmailTrait;
|
|
use i18nTrait;
|
|
|
|
public function __construct(
|
|
private readonly TranslatorInterface $translator,
|
|
#[Autowire('%brand%')]
|
|
private readonly string $brand,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $context
|
|
*/
|
|
public function getEmail(array $context): TemplatedEmail
|
|
{
|
|
/** @var ?ServiceRequest $sr */
|
|
$sr = $context['service_request'] ?? null;
|
|
Assert::isInstanceOf($sr, ServiceRequest::class);
|
|
|
|
/** @var ?User $user */
|
|
$user = $context['user'] ?? null;
|
|
Assert::isInstanceOf($user, User::class);
|
|
|
|
return (new TemplatedEmail())
|
|
->to($user->getEmail())
|
|
->priority(Email::PRIORITY_HIGH)
|
|
->subject($this->translator->trans($this->getI18nPrefix().'.subject', [
|
|
'%brand%' => $this->brand,
|
|
'%product%' => $sr->getProduct()->getName(),
|
|
'%date%' => $sr->getEndAt()->format($this->translator->trans('format.date', [], 'date')),
|
|
], AppMailer::TR_DOMAIN))
|
|
->htmlTemplate('email/command/notify_service_request_end.html.twig')
|
|
->context($context)
|
|
;
|
|
}
|
|
}
|