Sha256: b8f8d95593086864c65ef443d13939ba7757c2b4462806af1f4fbc1432b1849e

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

== Basic Usage

To use this gem, you will need sign up for an account at www.clickatell.com. 
Once you are registered and logged into your account centre, you should add 
an HTTP API connection to your account. This will give you your API_ID.

You can now use the library directly. You will need your API_ID as well as your
account username and password.

  require 'rubygems'
  require 'clickatell'
  
  api = Clickatell::API.authenticate('your_api_id', 'your_username', 'your_password')
  api.send_message('447771234567', 'Hello from clickatell')

  
== Command-line SMS Utility

The Clickatell gem also comes with a command-line utility that will allow you
to send an SMS directly from the command-line. 

You will need to create a YAML configuration file in your home directory, in a 
file called .clickatell that resembles the following:

  # ~/.clickatell
  api_key: your_api_id
  username: your_username
  password: your_password
  
You can then use the sms utility to send a message to a single recipient:

  sms 447771234567 'Hello from clickatell'
  
Run +sms+ without any arguments for a full list of options.

See http://clickatell.rubyforge.org for further instructions.  
 
 
 
 
 

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clickatell-0.4.1 README.txt