The package simply provides a Laravel service provider, facade and config file for the SendinBlue's API v3 official PHP library. https://github.com/sendinblue/APIv3-php-library
You can install this package via Composer using:
composer require vansteen/laravel-sendinblue
For Laravel <5.5, you must also install the service provider and the facade to your config/app.php
:
// config/app.php
'providers' => [
...
Vansteen\Sendinblue\SendinblueServiceProvider::class,
...
];
// config/app.php
'aliases' => [
...
'Sendinblue' => Vansteen\Sendinblue\Facades\Sendinblue::class,
];
You need to publish the config file to app/config/sendinblue.php
. To do so, run:
php artisan vendor:publish --tag=sendinblue.config
Now you need to set your configuration using environment variables.
Go the the Sendinblue API settings and add the v3 API key to your .env
file.
SENDINBLUE_APIKEY=xkeysib-XXXXXXXXXXXXXXXXXXX
To test it, you can add the folowing code in routes.php.
// routes.php
...
use Vansteen\Sendinblue\Facades\Sendinblue;
Route::get('/test', function () {
// Configure API keys authorization according to the config file
$config = Sendinblue::getConfiguration();
// Uncomment below to setup prefix (e.g. Bearer) for API keys, if needed
// $config->setApiKeyPrefix('api-key', 'Bearer');
// $config->setApiKeyPrefix('partner-key', 'Bearer');
$apiInstance = new \SendinBlue\Client\Api\ListsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->getLists();
dd($result);
} catch (Exception $e) {
echo 'Exception when calling AccountApi->getAccount: ', $e->getMessage(), PHP_EOL;
}
});
To get a idea of the of the API endpoints, visit the API readme file.
Be sure to visit the SendinBlue official documentation website for additional information about our API.
Please see the changelog for more information on what has changed recently.
composer test
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
license. Please see the license file for more information.