PHPackages                             codezero/mailer - 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. codezero/mailer

AbandonedArchivedLibrary[Mail &amp; Notifications](/categories/mail)

codezero/mailer
===============

Send mail in PHP with Laravel 5.

2.0.0(9y ago)2972MITPHPPHP &gt;=5.6.0

Since Jun 9Pushed 9y ago3 watchersCompare

[ Source](https://github.com/codezero-be/mailer)[ Packagist](https://packagist.org/packages/codezero/mailer)[ RSS](/packages/codezero-mailer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (5)Versions (3)Used By (0)

Mailer
======

[](#mailer)

![GitHub release](https://camo.githubusercontent.com/96bc79916626d756439f59c44106600274728c25fbc3083a58f9fbeb61465ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f636f64657a65726f2d62652f6d61696c65722e737667)![License](https://camo.githubusercontent.com/2928464ce8fe4f33e46aec9202716e9b158c9d7eca4535d7d6ec1738ea59a4c9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f636f64657a65726f2f6d61696c65722e737667)[![Build Status](https://camo.githubusercontent.com/f5324d0febf0fab991b1eca30408dd4aa5eef300ef80bdb010ff677edc877ea5/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f636f64657a65726f2d62652f6d61696c65722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/codezero-be/mailer)[![Scrutinizer](https://camo.githubusercontent.com/a30e8f516c992230afc507913bf352279ce6ea269e01a31da5a5945071513639/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f636f64657a65726f2d62652f6d61696c65722e737667)](https://scrutinizer-ci.com/g/codezero-be/mailer)[![Total Downloads](https://camo.githubusercontent.com/e3c37bddb0b6b0fd405331c109c65eb1429b1d19592a6a91477debecfa1deb8d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f64657a65726f2f6d61696c65722e737667)](https://packagist.org/packages/codezero/mailer)

### Send mail in PHP (with [Laravel 5](http://laravel.com/) implementation).

[](#send-mail-in-php-with-laravel-5-implementation)

Laravel 5 Installation
----------------------

[](#laravel-5-installation)

Install this package through Composer:

```
composer require codezero/mailer

```

Add a reference to `MailerServiceProvider` to the providers array in `config/app.php`:

```
'providers' => [
    'CodeZero\Mailer\MailerServiceProvider'
]

```

Usage
-----

[](#usage)

Create a new `MailComposer` class that extends `CodeZero\Mailer\MailComposer`.

```
