Ruby SMS API Script
Visit the Ruby SMS API Project at: http://github.com/bobes/textmagic/This Ruby wrapper provides a way to integrate TextMagic Bulk SMS Gateway to your Ruby/Rails application.
This is how you can get started with Ruby:
- Create a TextMagic account on http://www.textmagic.com/
- gem install textmagic
- Write Code
Ruby Code Example
require 'rubygems'
require 'textmagic'
gateway = TextMagic::API.new('my_username', 'my_api_password')
gateway.send 'Hello World!', '44123456789'