PHP code example of masterstart / php-totalsend-sms

1. Go to this page and download the library: Download masterstart/php-totalsend-sms library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

masterstart / php-totalsend-sms example snippets


$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);
bash
composer