RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Send/Receive SMS Messages with SMSified Gem for 1 Penny

@JSGoecke releases the SMSified Gem that allows your to send/receive SMS messages using Ruby for 1 penny per message! It’s simple.. see inside for examples. Happy texting and BTW, messages are free until we get around to implementing billing!

Comments

gem install smsified

require ‘rubygems’ require ‘smsified’

oneapi = Smsified::OneAPI.new :username => ‘user’, :password => ‘password’

oneapi.send_sms :address => ‘14155551212’, :message => ‘Hi there!’, :sender_address => ‘13035551212’ </code>

To all those UK readers - this is US only at the moment.

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in