PHP code example of nidrax69 / sendinblue
1. Go to this page and download the library: Download nidrax69/sendinblue 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/ */
nidrax69 / sendinblue example snippets
'providers' => array(
…
'Nidrax69\Sendinblue\SendinblueServiceProvider',
…
),
'aliases' => array(
…
'SendinblueWrapper' => 'Nidrax69\Sendinblue\Facades\SendinBlueWrapper',
…
),
…
// send template
$ml = new SendinblueWrapper();
$return = $ml->send_transactional_template($data);
…