Every repository with this icon (
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Dec 01 04:13:04 -0800 2009 | |
| |
History.txt | Tue Dec 01 04:06:54 -0800 2009 | |
| |
License.txt | Fri Aug 17 06:16:20 -0700 2007 | |
| |
RDOC_README.txt | Tue Aug 19 06:41:13 -0700 2008 | |
| |
README.textile | Wed Oct 07 02:35:47 -0700 2009 | |
| |
Rakefile | Tue Dec 01 04:12:16 -0800 2009 | |
| |
bin/ | Tue Oct 06 10:47:25 -0700 2009 | |
| |
lib/ | Tue Dec 01 04:12:16 -0800 2009 | |
| |
scripts/ | Fri Aug 17 06:16:20 -0700 2007 | |
| |
spec/ | Tue Dec 01 04:00:53 -0800 2009 | |
| |
website/ | Wed Oct 07 02:37:46 -0700 2009 |
Clickatell SMS Library
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.
Basic Usage
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’)To send a message to multiple recipients, simply pass in an array of numbers.
api.send_message([‘447771234567’, ‘447771234568’], ‘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’Alternatively, you can specify the username and password as a command line option. Run sms without any arguments for a full list of options.
The sms utility also supports multiple, comma-separated recipients (up to 100).
sms 447771111111,447772222222 “Hello everyone”See http://clickatell.rubyforge.org for further instructions.







