bravedave / sms
SMS - SMS Sending module for bravedave/DVC
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/bravedave/sms
Requires
- php: >=7.0
- bravedave/dvc: *
- bravedave/green: *
- giggsey/libphonenumber-for-php: *
This package is auto-updated.
Last update: 2025-09-27 07:16:43 UTC
README
- Works with https://smsbroadcast.com.au
- could be developed with https://www.nexmo.com/
Example
$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');