dev-master
9999999-dev https://github.com/cristiancy96/mandrillMandrill transactional emails via Laravel 4
MIT
The Requires
- php >=5.3.0
- illuminate/support 4.1.*
by Cristian Cruz Yate
laravel email mandrill
Wallogit.com
2017 © Pedro Peláez
Mandrill transactional emails via Laravel 4
Send Mandrill transactional emails from the Laravel 4 framework. This package is a updating of package doxxon and Laravel 4 wrapper around MichMich's Laravel Mandrill Bundle., (*1)
Edit your project's composer.json file and add a requirement for doxxon/laravel-mandrill-request., (*2)
"require": {
"laravel/framework": "4.1.*",
"doxxon/laravel-mandrill-request": "dev-master"
}
Update composer from the command line:, (*3)
composer update
Open app/config/app.php and add the following line to the providers array:, (*4)
'Doxxon\LaravelMandrillRequest\LaravelMandrillRequestServiceProvider',
Add a facade alias to enable shorthand usage. Open app/config/app.php and add the following line to the aliases array:, (*5)
'Mandrill' => 'Doxxon\LaravelMandrillRequest\Facades\MandrillRequest',
Publish the config files. This will allow you to set your Mandrill API key:, (*6)
php artisan config:publish doxxon/laravel-mandrill-request
Set your Mandrill API key by editing config/packages/doxxon/laravel-mandrill-request/config.php:, (*7)
return array(
'api_key' => 'your api key here',
);
Get your API keys from the Mandrill Dashboard, (*8)
$payload = array(
'message' => array(
'subject' => 'Transactional email via Mandrill',
'html' => 'It works!',
'from_email' => 'fromemail@example.com',
'to' => array(array('email'=>'toemail@example.com'))
)
);
$response = Mandrill::request('messages/send', $payload);
Mandrill transactional emails via Laravel 4
MIT
laravel email mandrill