Mail.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace App\Service;
  3. use App\Entity\User;
  4. use Symfony\Component\Mailer\MailerInterface;
  5. use Symfony\Component\Mime\Address;
  6. use Symfony\Component\Mime\Email;
  7. use Twig\Environment;
  8. /**
  9. * Envoi de mails
  10. */
  11. class Mail
  12. {
  13. /**
  14. * Mail Manager
  15. * @param $mailer
  16. * @param $templating
  17. * @param $from
  18. * @param $reply
  19. * @param $name
  20. */
  21. public function __construct(
  22. protected MailerInterface $mailer,
  23. protected Environment $templating,
  24. protected string $from,
  25. protected string $reply,
  26. protected string $name
  27. )
  28. {
  29. }
  30. protected function sendMessage(string $subject, string $to, string $body): void
  31. {
  32. $mail = (new Email())
  33. ->from(new Address($this->from, $this->name))
  34. ->to($to)
  35. ->subject($subject)
  36. ->text($body)
  37. ->replyTo(new Address($this->reply, $this->name));
  38. $this->mailer->send($mail);
  39. }
  40. public function sendMailActivation(User $user, string $lien): void
  41. {
  42. $subject = "Activation de votre compte";
  43. $template = 'security/mail_activate.html.twig';
  44. $to = $user->getMail();
  45. $body = $this->templating->render($template, ['user' => $user, 'lien' => $lien]);
  46. $this->sendMessage($subject, $to, $body);
  47. }
  48. public function sendMailDemandeActivation(User $user, string $lien): void
  49. {
  50. $subject = "Demande d'activation";
  51. $template = 'security/mail_demande_activation.html.twig';
  52. $to = $this->from;
  53. $body = $this->templating->render($template, ['user' => $user, 'lien' => $lien]);
  54. $this->sendMessage($subject, $to, $body);
  55. }
  56. public function sendMailTokenMp(User $user, string $lien): void
  57. {
  58. $subject = "Mot de passe perdu";
  59. $template = 'security/mail_tokenmdp.html.twig';
  60. $to = $user->getMail();
  61. $body = $this->templating->render($template, ['user' => $user, 'lien' => $lien]);
  62. $this->sendMessage($subject, $to, $body);
  63. }
  64. }