Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 757 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 757 Bytes

FOSUserBundleMandrillMailer

Provides a mailer service to use in combination with the FOSUserBundle and Mandrill.

Installation and configuration:

Pretty simple with Composer, add:

{
    "require": {
        "wrep/fosuserbundle-mandrill-mailer": "dev-master"
    }
}

Add FOSUserBundleMandrillMailer to your application kernel

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Wrep\FOSUserBundleMandrillMailer\FOSUserBundleMandrillMailerBundle(),
        // ...
    );
}

Setup the config.yml file

// app/config/config.yml
fos_user:
    service:
        mailer: wrep.fosuserbundlemandrillmailer