PHPackages                             bubb/mailee - 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. bubb/mailee

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

bubb/mailee
===========

Mailee API for Laravel

0.1(11y ago)225.6k1MITPHPPHP &gt;=5.4.0

Since May 29Pushed 10y ago1 watchersCompare

[ Source](https://github.com/lucascolette/laravel-mailee)[ Packagist](https://packagist.org/packages/bubb/mailee)[ RSS](/packages/bubb-mailee/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

laravel-mailee
==============

[](#laravel-mailee)

[Mailee](http://mailee.me) API for Laravel

Quick start
-----------

[](#quick-start)

### Required setup

[](#required-setup)

In the `require` key of `composer.json` file add the following

```
"bubb/mailee": "dev-master"

```

Run the composer update command

```
$ composer update

```

In your `config/app.php` add `'BUBB\Mailee\ServiceProvider'` to the end of the `$providers` array

```
'providers' => array(

    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'BUBB\Mailee\ServiceProvider',

),

```

At the end of `config/app.php` add `'Mailee'    => 'BUBB\Mailee\Facade'` to the `$aliases` array

```
'aliases' => array(

    'App'        => 'Illuminate\Support\Facades\App',
    'Artisan'    => 'Illuminate\Support\Facades\Artisan',
    ...
    'Mailee'   	 => 'BUBB\Mailee\Facade',

),

```

#### Publish your config

[](#publish-your-config)

Publish the config files:

```
$ php artisan config:publish bubb/mailee

```

Usage
-----

[](#usage)

### Create a contact

[](#create-a-contact)

```
