NAME
WWW::SMS::IE::aftsms - A module to send SMS messages using the AFT gateway.
SYNOPSIS
require WWW::SMS::IE::aftsms;
my $carrier = new WWW::SMS::IE::aftsms;
if ($carrier->login('aft_user', 'password'))
{
my $retval = $carrier->send('+353865551234', 'Hello World!');
if (!$retval)
{
print $carrier->error() . "\n";
}
}
DESCRIPTION
WWW::SMS::IE::o2sms is a class to send SMS messages via the command line using the AFT gateway.
For more information see WWW::SMS::IE::iesms, http://computer.donutsoft.net/sms/pmwiki.php?n=Main.HomePage
DISCLAIMER
The author accepts no responsibility nor liability for your use of this software. Please read the terms and conditions of the website of your mobile provider before using the program.
SEE ALSO
http://www.mackers.com/projects/o2sms/
http://computer.donutsoft.net/sms/pmwiki.php?n=Main.HomePage
AUTHOR
David McNamara (me.at.mackers.dot.com)
COPYRIGHT
Copyright 2000-2006 David McNamara
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.