
WWW::SMS::IE::vodasms - A module to send SMS messages using the website of Vodafone Ireland

require WWW::SMS::IE::iesms;
require WWW::SMS::IE::vodasms;
my $carrier = new WWW::SMS::IE::vodasms;
if ($carrier->login('0871234567', 'password'))
{
my $retval = $carrier->send('+353865551234', 'Hello World!');
if (!$retval)
{
print $carrier->error() . "\n";
}
}

WWW::SMS::IE::vodasms is a class to send SMS messages via the command line using the website of Vodafone Ireland -- http://www.vodafone.ie/
For more information see WWW::SMS::IE::iesms

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.

WWW::SMS::IE::iesms, WWW::SMS::IE::vodasms, WWW::SMS::IE::meteorsms
http://www.mackers.com/projects/o2sms/

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.