PHPackages                             gos/mailer-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. gos/mailer-bundle

AbandonedArchivedSymfony-bundle[Mail &amp; Notifications](/categories/mail)

gos/mailer-bundle
=================

Mailer Bundle, easy email templating &amp; reusable

10PHP

Since Oct 1Pushed 11y ago1 watchersCompare

[ Source](https://github.com/GeniusesOfSymfony/MailerBundle)[ Packagist](https://packagist.org/packages/gos/mailer-bundle)[ RSS](/packages/gos-mailer-bundle/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

\#Gos Mailer Bundle#

[![Build Status](https://camo.githubusercontent.com/faa0a0eac2d8eeca3da3d27db1769a3da43c2fcf12182b8b110c3cb6fda070bc/68747470733a2f2f7472617669732d63692e6f72672f47656e69757365734f6653796d666f6e792f4d61696c657242756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/GeniusesOfSymfony/MailerBundle) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/0c6e40217b86c34035b8bd26c7474363873ee1dab34e25433e04ec5a2318009b/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f47656e69757365734f6653796d666f6e792f4d61696c657242756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/GeniusesOfSymfony/MailerBundle/?branch=master) [![Code Coverage](https://camo.githubusercontent.com/a4e1ca1e49783420bcb38e8436d4833ac09407e317af807a1c2364c76a75a269/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f47656e69757365734f6653796d666f6e792f4d61696c657242756e646c652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/GeniusesOfSymfony/MailerBundle/?branch=master)

**This project is currently in development, please take care.**

Provide an easy way to architecture your mail system on huge projects. Easy to maintains, dedicated class and build your email like you build your form. If you use Symfony/Form, it's really easy to you, MailBuilder have the same API :)

Installation
------------

[](#installation)

You need to have [composer](https://getcomposer.org/) to install dependencies.

```
{
    "require": {
        "gos/mailer-bundle": "{last stable version}"
    }
}
```

Then run the command on the root of your project`composer update`

Add this line in your `AppKernel.php`

```
$bundles = array(

	//Other bundles
    new Gos\Bundle\MailerBundle\GosMailerBundle(),
);
```

Usage
-----

[](#usage)

First step, we will create an email, each email have his own class like this :

```
