MessageHandler.php 734 B

12345678910111213141516171819202122232425262728293031
  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. public function __construct(
  19. private TransportInterface $transport,
  20. ) {
  21. }
  22. public function __invoke(SendEmailMessage $message): ?SentMessage
  23. {
  24. return $this->transport->send($message->getMessage(), $message->getEnvelope());
  25. }
  26. }