torchlighttechnology/unsub-central-api

There is no license information available for the latest version (v1.0.1) of this package.

Unsub Central PHP Client

v1.0.1 2016-08-19 16:27 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:58:44 UTC


README

Install with composer

composer require torchlighttechnology/unsub-central-api:"~1.0"

Usage in your project

use torchlighttechnology\UnsubCentralAPI;

$client = new UnsubCentralAPI(
	'USERNAME',
	'PASSWORD'
);

$email = 'test@test.com';
$aff_key = 'YOUR_AFFILIATE_KEY';
$aff_salt = 'YOUR_AFFILIATE_KEY_SALT';

$client->emailAddressCheck($email, $aff_key, $aff_salt);