tzk / sendinblue
A Laravel 5 (and Laravel 4) wrapper for the SendInBlue API PHP class (as provided by SendInBlue)
Installs: 4 852
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- illuminate/support: >=4
- mailin-api/mailin-api-php: dev-master
This package is auto-updated.
Last update: 2024-10-15 19:26:51 UTC
README
The package supports use with the Laravel framework v4.x or v5.x providing a SendinblueWrapper
facade.
###Setup:
In order to install
composer require tzk/sendinblue
Within Laravel, locate the file ..config/app.php
.
Add the following to the providers
array:
'providers' => array( … 'Vansteen\Sendinblue\SendinblueServiceProvider', … ),
Furthermore, add the following the the aliases
array:
'aliases' => array( … 'SendinblueWrapper' => 'Vansteen\Sendinblue\Facades\SendinBlueWrapper', … ),
Run the command composer update
.
Publish the configuration:
// Laravel v4.x $ php artisan config:publish vansteen/sendinblue // Laravel v5.x $ php artisan vendor:publish
###Usage:
Your unique Sendinblue API key should be set in the package's config found in app/config/packages/vansteen/sendinblue/config.php
(Laravel 4)
config/sendinblue.php
(Laravel 5)
Methods of the Sendinblue API class work as described by the Sendinblue API docs found Here. Thanks to Laravel's use of the "Facade" design pattern, all methods may be called in the following manner:
… // Retrieve your account info $account = SendinblueWrapper::get_account(); …