Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/securingsincity/phpsms
- Owner: securingsincity
- License: mit
- Created: 2014-05-31T21:43:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-25T01:45:10.000Z (over 10 years ago)
- Last Synced: 2024-07-19T03:05:10.584Z (5 months ago)
- Language: PHP
- Size: 191 KB
- Stars: 13
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);```