Email Octopus SDK for PHP is a PHP API client that allows you to interact with the API provided by Email Octopus. Using the package you can easily subscribe/unsubscribe users to your newsletter, trigger automations and view various data about your campaigns.
- >= 7.2.5
You can install the package via composer:
composer require goran-popovic/email-octopus-php
Before being able to use the SDK, you would need to create an Email Octopus API key.
After creating the key, you could edit any .env
file
you might be using and add your API key there, for example:
EMAIL_OCTOPUS_API_KEY=YOUR_API_KEY
Then, you can interact with Email Octopus's API like so:
$apiKey = getenv('EMAIL_OCTOPUS_API_KEY');
$client = EmailOctopus::client($apiKey);
$response = $client->lists()->createContact('00000000-0000-0000-0000-000000000000', [
'email_address' => 'goran.popovic@geoligard.com', // required
'fields' => [ // optional
'FirstName' => 'Goran',
'LastName' => 'Popović',
],
'tags' => [ // optional
'lead'
],
'status' => 'SUBSCRIBED', // optional
]);
echo $response['status']; // SUBSCRIBED
If needed, there are additional options you can set when instantiating a Client
:
$client = EmailOctopus::client(
$apiKey,
'https://emailoctopus.com/api/1.6/', // API base URI, for most cases default is fine and there is no need to set this variable
30, // timeout - maximum number of seconds to wait for a response
3 // connect timeout - maximum number of seconds to wait while trying to connect to a server
);
This wrapper tends to follow the logic and classification found in the official Email Octopus API docs. All the routes, and available params for each route are explained in greater detail in those docs.
All the methods are assigned into 3 main resources:
You can find an ID of the automation you are currently viewing in the dashboard URL,
like so: https://emailoctopus.com/automations/<automationId>
$client->automations()->start('00000000-0000-0000-0000-000000000000', [
'list_member_id' => '00000000-0000-0000-0000-000000000000',
]);
You can find an ID of the campaign you are currently viewing in the dashboard URL,
like so: https://emailoctopus.com/reports/campaign/<campaignId>
$client->campaigns()->get('00000000-0000-0000-0000-000000000000');
$client->campaigns()->getAll([
'limit' => 1, // optional
'page' => 2 // optional
]);
$client->campaigns()->getReportSummary('00000000-0000-0000-0000-000000000000');
$client->campaigns()->getReportLinks('00000000-0000-0000-0000-000000000000');
$client->campaigns()->getReportBounced('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
$client->campaigns()->getReportClicked('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
$client->campaigns()->getReportComplained('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
$client->campaigns()->getReportOpened('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
$client->campaigns()->getReportSent('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
$client->campaigns()->getReportUnsubscribed('00000000-0000-0000-0000-000000000000');
$client->campaigns()->getReportNotClicked('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
$client->campaigns()->getReportNotOpened('00000000-0000-0000-0000-000000000000', [
'limit' => 1 // optional
]);
To find the list ID, go to your Email Octopus dashboard, find the Lists
tab,
select a list by clicking on its title, and when you open a single list simply go to the settings
tab
and copy the ID from there. Alternatively, you can find an ID of the list or any other resource
you are currently viewing in the dashboard URL, like so: https://emailoctopus.com/lists/<listId>
$client->lists()->get('00000000-0000-0000-0000-000000000000');
$client->lists()->getAll([
'limit' => 1, // optional
'page' => 2 // optional
]);
$client->lists()->create([
'name' => 'Api test'
]);
$client->lists()->update('00000000-0000-0000-0000-000000000000', [
'name' => 'New name'
]);
$client->lists()->delete('00000000-0000-0000-0000-000000000000');
$client->lists()->getAllTags('00000000-0000-0000-0000-000000000000');
$client->lists()->getContact(
'00000000-0000-0000-0000-000000000000',
'00000000-0000-0000-0000-000000000000',
);
$client->lists()->getAllContacts('00000000-0000-0000-0000-000000000000', [
'limit' => 1, // optional
'page' => 2 // optional
]);
$client->lists()->getSubscribedContacts('00000000-0000-0000-0000-000000000000', [
'limit' => 1, // optional
'page' => 2 // optional
]);
$client->lists()->getUnsubscribedContacts('00000000-0000-0000-0000-000000000000', [
'limit' => 1, // optional
'page' => 2 // optional
]);
$client->lists()->getContactsByTag('00000000-0000-0000-0000-000000000000', 'lead', [
'limit' => 1
]);
$client->lists()->createContact('00000000-0000-0000-0000-000000000000', [
'email_address' => 'goran.popovic@geoligard.com', // required
'fields' => [ // optional
'FirstName' => 'Goran',
'LastName' => 'Popović',
],
'tags' => [ // optional
'lead'
],
'status' => 'SUBSCRIBED', // optional
]);
Note: For member ID you can either use the ID of the list contact that you can find in the URL in the dashboard:
https://emailoctopus.com/lists/<listId>/contacts/<contactId>
,
or an MD5 hash of the lowercase version of the list contact's email address.
$client->lists()->updateContact('00000000-0000-0000-0000-000000000000', md5('goran.popovic@geoligard.com'), [
'email_address' => 'new_email_address@geoligard.com', // optional
'fields' => [ // optional
'FirstName' => 'New name',
'LastName' => 'New lastname',
],
'tags' => [ // optional
'vip' => true,
'lead' => false
],
'status' => 'UNSUBSCRIBED', // optional
]);
Note: For member ID you can either use the ID of the list contact that you can find in the URL in the dashboard:
https://emailoctopus.com/lists/<listId>/contacts/<contactId>
,
or an MD5 hash of the lowercase version of the list contact's email address.
$client->lists()->deleteContact(
'00000000-0000-0000-0000-000000000000',
md5('goran.popovic@geoligard.com')
);
$client->lists()->createField('00000000-0000-0000-0000-000000000000', [
'label' => 'What is your hometown?',
'tag' => 'Hometown',
'type' => 'TEXT',
'fallback' => 'Unknown' // optional
]);
$client->lists()->updateField('00000000-0000-0000-0000-000000000000', 'Hometown', [
'label' => 'New label',
'tag' => 'NewTag',
'fallback' => 'New fallback' // optional
]);
$client->lists()->deleteField('00000000-0000-0000-0000-000000000000', 'NewTag');
$client->lists()->createTag('00000000-0000-0000-0000-000000000000', [
'tag' => 'vip'
]);
$client->lists()->updateTag('00000000-0000-0000-0000-000000000000', 'vip', [
'tag' => 'New Tag Name'
]);
$client->lists()->deleteTag('00000000-0000-0000-0000-000000000000', 'New Tag Name');
Please see CHANGELOG for more information on what has changed recently.