Note: The latest V2.0 ( LTS ) is now maintained at
https://tracker-doc.sendinblue.com/v2.0/reference
and the Documentation is available herehttps://tracker-doc.sendinblue.com
SendinBlue Marketing Automation module helps you automate your marketing campaigns with minimum efforts and development cost.
-
You must sign up for SendinBlue account for using APIs. All our APIs require HTTP authentication using Marketing Automation API Key, which can be found here Marketing Automation BETA.
-
Assuming that you have cloned this git repo, or downloaded
sendinblue.php
and its in the same directory than the script. You can use this small sample script to get started.
<?php
require('sendinblue.php');
/*
* This will initiate the API with the endpoint and your Marketing Automation API key.
*
*/
$event = new Sendinblue('your_api_key');
/** Prepare variables for easy use **/
$data = array();
$data['name'] = 'James Clear';
$data['email_id'] = 'james@example.com';
$data['id'] = '10001';
/** This call track your customers and users, as well as track their actions **/
$event->identify($data);
?>
- To explore more, you should visit the Marketing Automation Quick Start documentation.
List of API calls that you can make, & click to read more about it.
Be sure to visit the SendinBlue official documentation website for additional information about our API.
If you find a bug, please submit the issue in Github directly.
As always, if you need additional assistance, drop us a note here.