mediapart / selligent
Selligent Client API. Use to manage your Selligent data from PHP.
Installs: 28 459
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 7
Forks: 7
Open Issues: 0
Requires
- php: >=5.6
- psr/log: ^1.0
- symfony/config: ^3.1|^2.8
- symfony/yaml: ^3.2|^2.8
Requires (Dev)
- phpunit/phpunit: ^5.7
README
A simple PHP library to help you interact with both Selligent Individual and Broadcast API.
Usage
<?php # example.php require './vendor/autoload.php'; use Mediapart\Selligent\Connection; use Mediapart\Selligent\Transport; use Mediapart\Selligent\Properties; /* 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'] = 'foo@bar.tld'; $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.
Installation
Simply install this package with Composer.
composer require mediapart/selligent
Tests
Executing tests out of the box :
./vendor/bin/phpunit
Without setting some environment variables, some tests will be skipped. Tests in real
testsuite for example.
Read More
- Illustrated Reference of all available API endpoints ;
- Little use case Example from connection to triggering campaign ;
- You could use PSR3 to log informations from this library.