Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bigpresh/sms-send-aql
SMS::Send driver to send SMS text messages via www.aql.com
https://github.com/bigpresh/sms-send-aql
Last synced: about 1 month ago
JSON representation
SMS::Send driver to send SMS text messages via www.aql.com
- Host: GitHub
- URL: https://github.com/bigpresh/sms-send-aql
- Owner: bigpresh
- Created: 2011-02-11T23:02:32.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-11T23:22:00.000Z (almost 14 years ago)
- Last Synced: 2024-10-13T11:32:39.725Z (2 months ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/SMS-Send-AQL
- Size: 97.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
SMS::Send::AQL - SMS::Send driver to send messages via AQL (www.aql.com)SYNOPSIS
use SMS::Send;
# Create a sender
my $sender = SMS::Send->new('AQL',
_login => 'your_aql_username',
_password => 'your_aql_password',
_sender => 'sender number',
);
# Send a message
my $sent = $sender->send_sms(
text => 'This is a test message',
to => '+61 (4) 1234 5678',
);
if ( $sent ) {
print "Message sent ok\n";
} else {
print "Failed to send message\n";
}DESCRIPTION
A driver for SMS::Send to send SMS text messages via AQL (www.aql.com)This is not intended to be used directly, but instead called by
SMS::Send (see synopsis above for a basic illustration, and see
SMS::Send's documentation for further information).METHODS
new Constructor, takes argument pairs passed by SMS::Send, returns an
SMS::Send::AQL object. See usage synopsis for example, and see
SMS::Send documentation for further info on using SMS::Send drivers.send_sms
Send the message - see SMS::Send for details.AUTHOR
David Precious,COPYRIGHT AND LICENSE
Copyright (C) 2008-2011 by David PreciousThis 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.