library phpsms
PHP SMS mailer based on textbelt https://github.com/typpo/textbelt.
phpsms/phpsms
PHP SMS mailer based on textbelt https://github.com/typpo/textbelt.
- Thursday, September 25, 2014
- by securingsincity
- Repository
- 2 Watchers
- 7 Stars
- 121 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 6 Forks
- 0 Open issues
- 1 Versions
- 7 % Grown
PHPSMS
PHP SMS mailer based on textbelt https://github.com/typpo/textbelt, (*1)
Requires Composer
Example usage:
require 'vendor/autoload.php';
//number to text
$number = '##########';
//message to be sent
$message = 'YO! james what up';
$phpsms = new PHPSMS\PHPSMS($number,$message);
//with a different From
$from = 'myemail@test.com'
$phpsms = new PHPSMS\PHPSMS($number,$message,$from);
//not sending to the us - note totally untested
$region = 'canada';
$phpsms = new PHPSMS\PHPSMS($number,$message,$from,$region);
dev-master
9999999-dev
PHP SMS mailer based on textbelt https://github.com/typpo/textbelt.
Sources
Download
MIT