SMS - SMS Sending module for bravedave/DVC

v24.02.01 2024-02-27 03:45 UTC

This package is auto-updated.

Last update: 2024-04-27 04:16:09 UTC


README

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');