Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/securingsincity/phpsms

Php sms mailer based on textbelt https://github.com/typpo/textbelt
https://github.com/securingsincity/phpsms

Last synced: about 2 months ago
JSON representation

Php sms mailer based on textbelt https://github.com/typpo/textbelt

Awesome Lists containing this project

README

        

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 = '[email protected]'
$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);

```