masterstart / php-totalsend-sms
An API client for sending SMSs via the TotalSend API
1.0.0
2018-05-06 16:40 UTC
Requires
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^5.7
This package is not auto-updated.
Last update: 2025-03-23 10:13:18 UTC
README
An API client for sending SMSs via the TotalSend API
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);