Skip to content

securingsincity/phpsms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cb2c5c6 · Sep 25, 2014

History

12 Commits
Sep 25, 2014
Jun 1, 2014
May 31, 2014
Jun 4, 2014
Jun 4, 2014
Jun 4, 2014

Repository files navigation

PHPSMS

PHP SMS mailer based on textbelt https://github.com/typpo/textbelt

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

Releases

No releases published

Packages

No packages published

Languages