
WWW::SMS::IE::aftsms - A module to send SMS messages using the AFT gateway.

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";
}
}

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

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.

http://www.mackers.com/projects/o2sms/
http://computer.donutsoft.net/sms/pmwiki.php?n=Main.HomePage

David McNamara (me.at.mackers.dot.com)

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.