PHP code example of bravedave / sms
1. Go to this page and download the library: Download bravedave/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/ */
bravedave / sms example snippets
$account = new sms\account;
$account->enabled = TRUE;
$account->countrycode = 'AU';
$account->providor = 'smsbroadcast';
$account->accountid = '<your account name>';
$account->accountpassword = '<your password>';
$account->fromnumber = '<your mobile number>';
$sms = new sms\sms( $account);
print $sms->balance();
print $sms->send( '<to number>', 'hello world');