Skip to content

Git-Host/sms-recycle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Languages

  • PHP 70.0%
  • CSS 28.7%
  • JavaScript 1.3%