accord/mandrill-swiftmailer-bundle
Symfony bundle that adds a SwiftMailer transport for sending email via Mandrill’s API. Configure your Mandrill API key (plus optional async mode and subaccount), register the bundle, then set SwiftMailer’s transport to accord_mandrill.
A Symfony bundle that provides a Mandrill Transport implementation based on Mandrill's API
Mandrill API Key - https://mandrillapp.com/
composer require accord/mandrill-swiftmailer-bundle
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Accord\MandrillSwiftMailerBundle\AccordMandrillSwiftMailerBundle(),
// ...
);
}
// app/config/config.yml
accord_mandrill_swift_mailer:
api_key: MANDRILL_API_KEY
async: false # optional
subaccount: ~ # default null
// app/config/config.yml
swiftmailer:
transport: accord_mandrill
How can I help you explore Laravel packages today?