Skip to content

An API client for sending SMSs via the Panacea Mobile API

License

Notifications You must be signed in to change notification settings

Superbalist/php-panaceamobile

Repository files navigation

php-panaceamobile

An API client for sending SMSs via the Panacea Mobile API

Author Build Status StyleCI Software License Packagist Version Total Downloads

Installation

composer require superbalist/php-panaceamobile

Integrations

Want to get started quickly? Check out some of these integrations:

Usage

$username = 'your_username';
$password = 'your_password';

$guzzleClient = new \GuzzleHttp\Client();

$client = new \Superbalist\PanaceaMobile\PanaceaMobileAPI($guzzleClient, $username, $password);

$response = $client->sendMessage('+27000000000', 'This is a test message.');
var_dump($response);