PHP code example of kinow-io / sendinblue-wrapper

1. Go to this page and download the library: Download kinow-io/sendinblue-wrapper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kinow-io / sendinblue-wrapper example snippets


'providers' => [
    …
    \Kinow\Sendinblue\SendinblueServiceProvider::class,
],

'aliases' => [
    …
    'SendinblueWrapper' => 'Kinow\Sendinblue\Facades\SendinBlueWrapper',
],

…
// Retrieve your account info
$account = SendinblueWrapper::get_account();
…
sh
// Laravel 5
$ php artisan vendor:publish