2017 © Pedro Peláez
 

library mailee

Mailee API for Laravel

image

bubb/mailee

Mailee API for Laravel

  • Friday, May 22, 2015
  • by lucascolette
  • Repository
  • 1 Watchers
  • 2 Stars
  • 12,947 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 9 % Grown

The README.md

laravel-mailee

Mailee API for Laravel, (*1)

Quick start

Required setup

In the require key of composer.json file add the following, (*2)

"bubb/mailee": "dev-master"

Run the composer update command, (*3)

$ composer update

In your config/app.php add 'BUBB\Mailee\ServiceProvider' to the end of the $providers array, (*4)

'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, (*5)

'aliases' => array(

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

),

Publish your config

Publish the config files:, (*6)

$ php artisan config:publish bubb/mailee

Usage

Create a contact

<?php

Mailee::createContact(['name' => 'Lucas Colette', 'email' => 'lucas@bubb.com.br']);

Attach a contact to list

<?php

Mailee::createContact(['name' => 'Lucas Colette', 'email' => 'lucas@bubb.com.br'])->attachToList('MyList');

The Versions

22/05 2015

dev-master

9999999-dev

Mailee API for Laravel

  Sources   Download

MIT

The Requires

 

by Lucas Colette

laravel api email mailee

29/05 2014

0.1

0.1.0.0

Mailee API for Laravel

  Sources   Download

MIT

The Requires

 

by Lucas Colette

laravel api email mailee