Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bigpresh/sms-aql
SMS::AQL Perl module on CPAN
https://github.com/bigpresh/sms-aql
Last synced: about 1 month ago
JSON representation
SMS::AQL Perl module on CPAN
- Host: GitHub
- URL: https://github.com/bigpresh/sms-aql
- Owner: bigpresh
- Created: 2010-02-15T18:47:43.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2015-04-30T16:11:32.000Z (over 9 years ago)
- Last Synced: 2024-10-13T11:32:28.612Z (2 months ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/SMS-AQL
- Size: 164 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
SMS::AQL README
===========================SMS::AQL is a simple module which provides a clean
object-oriented interface to allow sending of SMS text messages
to mobile phones using the HTTP gateway from AQL (www.aql.com).In order to use AQL's gateway, you will need to get an account
with them (free), and purchase some credits (not free obviously).Note, I have no connection to AQL other than being a user of their
services. I started writing this module for myself, then thought
I should do the Right Thing and release it to CPAN.I contacted AQL to discuss doing this and ask for some test SMS
credits to assist with testing the module, and they were most
helpful - thanks guys, you're a top company :)INSTALLATION
To install this module use the standard routine:
perl Makefile.PL
make
make test
make installDEPENDENCIES
This module requires these other modules and libraries:
LWP
PROXY SUPPORT
If you provide a proxy setting in the options when instantiating the object,
it will be passed through to LWP. If the proxy requires authentication, then
supply the username and password in the proxy URL, like so:http://user:pass@host:port/
If you don't need a username and password, leave them out.An example:
my $sms = new SMS::AQL({
username => 'user',
password => 'pass',
options => {
proxy => 'http://user:pass@host:port/',
}
});COPYRIGHT AND LICENCE
Copyright (C) 2006-2007 by David Precious
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.7 or,
at your option, any later version of Perl 5 you may have available.THANKS
- to Adam Beaumount and the AQL team for their assistance
- to Ton Voon at Altinity (http://www.altinity.com/) for contributing
several improvements$Id$