You can manage all notifications (email, push-notifications, sms) for sylius commerce projects.
composer require symfony/messenger
- add messenger transport dsn to .env file
- configure your messenger.
framework:
messenger:
transports:
async: "%env(MESSENGER_TRANSPORT_DSN)%"
routing:
'Workouse\NotifierPlugin\Message\MailNotification': async
-
Run
composer require workouse/notifier-sylius
. -
Symfony Flex resolve all configurations for you.