masterstart/php-totalsend-sms

An API client for sending SMSs via the TotalSend API

1.0.0 2018-05-06 16:40 UTC

This package is not auto-updated.

Last update: 2024-04-21 06:13:07 UTC


README

An API client for sending SMSs via the TotalSend API

Author Build Status Software License Packagist Version Total Downloads

Installation

composer require masterstart/php-totalsend-sms

Usage

$username = 'your_username';
$password = 'your_password'; // or api token

$guzzleClient = new \GuzzleHttp\Client();

$client = new \MasterStart\TotalSendSMS\TotalSendSMSClient($guzzleClient, $username, $password);
s
$response = $client->sendMessage('+27000000000', 'This is a test message.');
var_dump($response);