selligent
New release
A simple PHP library to help you interact with both Selligent Individual and Broadcast API.
<?php # example.php
require './vendor/autoload.php';
use MediapartSelligentConnection;
use MediapartSelligentTransport;
use MediapartSelligentProperties;
/* connect you to your Selligent API server */
$connection = new Connection();
$client = $connection->open([
'login' => '*****',
'password' => '*****',
'wsdl' => 'http://emsecure/individual?wsdl',
]);
/*
Example : Trigger the TESTGATE campaign to an user.
We will register the user first an then, we will trigger
the campaign with a custom message :
*/
try {
$transport = new Transport($client);
$user = new Properties();
$user['NAME'] = 'Foo Bar';
$user['MAIL'] = '[email protected]';
$userId = $transport
->setList($config['list'])
->subscribe($user)
;
$inputData = new Properties();
$inputData['MESSAGE'] = 'Lorem ipsum dolor sit amet conceptuem.';
$result = $transport
->setCampaign($config['campaign'])
->triggerCampaign($userId, $inputData)
;
} catch (Exception $e) {
echo 'something bad happens.';
}You could broadcast campaign based on complete HTML from the API.
Simply install this package with Composer.
composer require mediapart/selligentExecuting tests out of the box :
./vendor/bin/phpunitWithout setting some environment variables, some tests will be skipped. Tests in real testsuite for example.