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