vendor/symfony/mailer/EventListener/EnvelopeListener.php line 42

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Mailer\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\Mailer\Event\MessageEvent;
  13. use Symfony\Component\Mime\Address;
  14. /**
  15.  * Manipulates the Envelope of a Message.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  */
  19. class EnvelopeListener implements EventSubscriberInterface
  20. {
  21.     private $sender;
  22.     private $recipients;
  23.     /**
  24.      * @param Address|string     $sender
  25.      * @param (Address|string)[] $recipients
  26.      */
  27.     public function __construct($sender null, array $recipients null)
  28.     {
  29.         if (null !== $sender) {
  30.             $this->sender Address::create($sender);
  31.         }
  32.         if (null !== $recipients) {
  33.             $this->recipients Address::createArray($recipients);
  34.         }
  35.     }
  36.     public function onMessage(MessageEvent $event): void
  37.     {
  38.         if ($this->sender) {
  39.             $event->getEnvelope()->setSender($this->sender);
  40.         }
  41.         if ($this->recipients) {
  42.             $event->getEnvelope()->setRecipients($this->recipients);
  43.         }
  44.     }
  45.     public static function getSubscribedEvents()
  46.     {
  47.         return [
  48.             // should be the last one to allow header changes by other listeners first
  49.             MessageEvent::class => ['onMessage', -255],
  50.         ];
  51.     }
  52. }