Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (24 loc) · 1.47 KB

README.md

File metadata and controls

37 lines (24 loc) · 1.47 KB

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);