Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 621 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 621 Bytes

mailingwork

Installation

This project is not published on packagist till now.

composer require bconnect/mailingwork

Usage

$client = \bconnect\MailingWork\Client::getClient('user', 'pass');
try {
  $listId = $client->api('list')->createList("Api created list");
  $recipient = $client->api('recipient')->getRecipientById(5);
} catch (\bconnect\MailingWork\ApiException $ex) {
  print "Error ocurred";
}

Clients