PHP code example of chrisbraybrooke / sendinblue-tracker

1. Go to this page and download the library: Download chrisbraybrooke/sendinblue-tracker 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/ */

    

chrisbraybrooke / sendinblue-tracker example snippets


composer 

// config/services.php

'sendinblue' => [
    'tracker_id' => env('SENDINBLUE_TRACKER_ID'),
],

use SendinBlueTracker;

SendinBlueTracker::identify('[email protected]', [
    'FIRSTNAME' => 'Christian',
    'LASTNAME' => 'Braybrooke'
]);

use SendinBlueTracker;

SendinBlueTracker::event(
    '[email protected]',
    'eventName',
  	// Event Data
    [
      'CTA_URL' => 'https://www.example.com',
      'COST' => '20.00'
    ],
  	// User Data
    [
      'FIRSTNAME' => 'Chris'
    ],
);