The MandrillMailerBundle add support fot Mandrill API Swiftmailer.
_ _ _ _ _ _
/\/\ __ _ _ __ __| |_ __(_) | | /\/\ __ _(_) | ___ _ __
/ \ / _` | '_ \ / _` | '__| | | |/ \ / _` | | |/ _ \ '__|
/ /\/\ \ (_| | | | | (_| | | | | | / /\/\ \ (_| | | | __/ |
\/ \/\__,_|_| |_|\__,_|_| |_|_|_\/ \/\__,_|_|_|\___|_|
Features include:
- ...
Caution: This bundle is under development with no warranty.
Mandrill API Key - https://mandrillapp.com/
Add MandrillMailerBundle by running the command:
$ php composer.phar require remiii/mandrill-mailer-bundle
Composer will install the bundle to your project's vendor
directory.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new remiii\MandrillMailerBundle\remiiiMandrillMailerBundle(),
);
}
// app/config/config.yml
#...
# MandrillMailer
remiii_mandrill_mailer:
api_key: YOUR_MANDRILL_API_KEY
async: false
// app/config/parameters.yml
parameters:
#...
mailer_transport: remiii_mandrill_mailer
This bundle is under the MIT license. See the complete license in LICENSE.md
- Rémi Barbe (aka Remiii)
For bug reports open a Github ticket. Patches gratefully accepted. :-)