Download the PHP package bubb/mailee without Composer
On this page you can find all versions of the php package bubb/mailee. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package mailee
laravel-mailee
Mailee API for Laravel
Quick start
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 the config files:
$ php artisan config:publish bubb/mailee
Usage
Create a contact
<?php
Mailee::createContact(['name' => 'Lucas Colette', 'email' => '[email protected]']);
Attach a contact to list
<?php
Mailee::createContact(['name' => 'Lucas Colette', 'email' => '[email protected]'])->attachToList('MyList');
All versions of mailee with dependencies
PHP Build Version
Package Version
The package bubb/mailee contains the following files
Loading the files please wait ....