vendor/symfony/mailer/Messenger/MessageHandler.php line 31

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\Messenger;
  11. use Symfony\Component\Mailer\SentMessage;
  12. use Symfony\Component\Mailer\Transport\TransportInterface;
  13. /**
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  */
  16. class MessageHandler
  17. {
  18.     private TransportInterface $transport;
  19.     public function __construct(TransportInterface $transport)
  20.     {
  21.         $this->transport $transport;
  22.     }
  23.     public function __invoke(SendEmailMessage $message): ?SentMessage
  24.     {
  25.         return $this->transport->send($message->getMessage(), $message->getEnvelope());
  26.     }
  27. }