table of contents
SMS::Send::AQL(3pm) | User Contributed Perl Documentation | SMS::Send::AQL(3pm) |
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¶
AUTHOR¶
David Precious, <davidp@preshweb.co.uk>
COPYRIGHT AND LICENSE¶
Copyright (C) 2008-2011 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.
2022-11-27 | perl v5.36.0 |