gabrielqs / transactional-emails
Integration between Magento2 and SendGrid. This module can be simply modified to use other transactional email providers by implementing a new Gabrielqs\TransactionalEmails\Api\TransportInterface under Gabrielqs\TransactionalEmails\Model\Transports.
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- sendgrid/sendgrid: ^5.0
This package is not auto-updated.
Last update: 2025-03-02 02:55:56 UTC
README
Enables sending of transactional e-mails through SendGrid.
Installation
Using composer: composer require gabrielqs/transactional-emails
Configuration
Configuration available under Stores -> Configuration -> System -> SMTP
Adding new Transactional Email Transports
Adding new Transactional Email transports is easy. You can simply create new instances of Gabrielqs\TransactionalEmails\Api\TransportInterface
under Gabrielqs\TransactionalEmails\Model\Transports
, implementing the send()
method.
Afther that, simply add it as an option in the Gabrielqs\TransactionalEmails\Model\Source\Provider
class.