Skip to content

Commit

Permalink
Merge pull request #1 from vgross/master
Browse files Browse the repository at this point in the history
Create README.md
  • Loading branch information
mac-cain13 committed Apr 13, 2014
2 parents bd4a059 + e6b6b9a commit 0ab3abc
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
FOSUserBundleMandrillMailer
===========================

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

## Installation and configuration:

Pretty simple with [Composer](http://packagist.org), add:

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

### Add FOSUserBundleMandrillMailer to your application kernel

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

### Setup the config.yml file

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

0 comments on commit 0ab3abc

Please sign in to comment.