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:

  1. Create a TextMagic account on http://www.textmagic.com/
  2. gem install textmagic
  3. Write Code
Ruby Code Example
require 'rubygems'
require 'textmagic'

gateway = TextMagic::API.new('my_username', 'my_api_password')
gateway.send 'Hello World!', '44123456789'