Swifter Mailer Bridge for Mako Framework
You can install the package through composer:
composer require twocore/mailr
So now you can update your project with a single command.
composer update
After installing you'll have to register the package in your app/config/application.php
file:
'packages' =>
[
...
'core' =>
[
...
twocore\mailr\MailrPackage::class,
]
...
],
Currently only the Swift_SmtpTransport
is supported.