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

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

This package is auto-updated.

Last update: 2025-09-27 07:16:43 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');