laravel-mandrill icon indicating copy to clipboard operation
laravel-mandrill copied to clipboard

A LaravelPHP package for working w/ Mandrill.

Mandrill for LaravelPHP

This package is a simple wrapper for working w/ the Mandrill API. The code of the application is based on Scott Travis' Mailchimp Bundle.

Install

In application/bundles.php add:

'mandrill' => array('auto' => true),

Edit the sample config file in bundels/mandrill/config/mandrill.php and input the proper information.

Usage

Call the desired method and pass the params as a single array. Don't worry about passing the API key.

$response = Mandrill::request('messages/send', array(
	'message' => array(
		'html' => 'Body of the message.',
		'subject' => 'Subject of the message.',
		'from_email' => '[email protected]',
		'to' => array(array('email'=>'[email protected]')),
	),
));