The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::SMS::IE::meteorsms - A module to send SMS messages using the website of Meteor Ireland

SYNOPSIS

  require WWW::SMS::IE::iesms;
  require WWW::SMS::IE::meteorsms;

  my $carrier = new WWW::SMS::IE::meteorsms;

  if ($carrier->login('0871234567', 'password'))
  {
    my $retval = $carrier->send('+353865551234', 'Hello World!');

    if (!$retval)
    {
      print $carrier->error() . "\n";
    }
  }

DESCRIPTION

WWW::SMS::IE::meteorsms is a class to send SMS messages via the command line using the website of Meteor Ireland -- http://www.meteor.ie/

For more information see WWW::SMS::IE::iesms

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

WWW::SMS::IE::iesms, WWW::SMS::IE::meteorsms, WWW::SMS::IE::meteorsms

http://www.mackers.com/projects/o2sms/

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.