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