-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from vgross/master
Create README.md
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |