sairiz / mandrill by sairiz

Mandrill Official API Wrapper for Laravel 4
45,024
12
2
Package Data
Maintainer Username: sairiz
Maintainer Contact: saiffil@mtouch.my (Saiffil Fariz)
Package Create Date: 2014-02-14
Package Last Update: 2014-08-07
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:10:45
Package Statistics
Total Downloads: 45,024
Monthly Downloads: 163
Daily Downloads: 6
Total Stars: 12
Total Watchers: 2
Total Forks: 4
Total Open Issues: 1

Mandrill Official API Wrapper for Laravel 4

Latest Stable Version Total Downloads License

Installation :

  1. Install the package via composer

  2. Add the following entry to the array of service providers found in app/config/app.php : 'Sairiz\Mandrill\MandrillServiceProvider',

  3. Publish the config file to your app/config/ directory by running the following from command line in your project root : php artisan config:publish sairiz/mandrill

  4. Setup your api key at app/config/packages/sairiz/mandrill/config.php

Usage

Call any method using Facade alias (Email)

Example :

$message = array(
    'subject' => 'Your subject here',
    'html' => '<html><body>Your email body</body></html>',
    'from_email' => 'yours@email.com',
    'to' => array(array('email'=>'clients@email.com'))
);

$response = Email::messages()->send($message);

The first method is the call category while the chain method is the method within that category

Refer to the official documentation for full method at https://mandrillapp.com/api/docs/index.php.html