Skip to content

trajche/sms-recycle

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
api
 
 
css
 
 
 
 
 
 
js
 
 
 
 
 
 
 
 
 
 

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published