stormtrooper42 / sms-recycle

Web service to receive SMS online anonymously.

Home Page:http://smsrecycle.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SMS Recycle

Web service to receive SMS online anonymously created in PHP/MySQL over a day of messing around. Currently works with:

  • Nexmo.com
  • Plivo.com

Version

1.0

Todo's

  • Twilio integration
  • Add 'private number' option (pass protect?)
  • Add reserve this number option (pay?)

Installation

Create the 'messages' table in your database and fill out the config.php with your details.

CREATE TABLE IF NOT EXISTS `messages` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `type` varchar(8) NOT NULL,
  `sentfrom` bigint(20) NOT NULL,
  `sentto` bigint(20) NOT NULL,
  `message` text NOT NULL,
  `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;

Development

If you have suggestions or requests, contact me via http://tj.mk

License

WTFPL http://www.wtfpl.net/txt/copying/

About

Web service to receive SMS online anonymously.

http://smsrecycle.com

License:Do What The F*ck You Want To Public License


Languages

Language:PHP 70.0%Language:CSS 28.7%Language:JavaScript 1.3%