NAME
Net::SMS::Genie - a module to send SMS messages using the Genie web2sms gateway (htto://www.genie.co.uk/).
SYNOPSIS
my $sms = Net::SMS->new(
username => 'yourname',
password => 'yourpassword',
recipient => 07713123456,
subject => 'a test',
message => 'a test message',
);
$sms->verbose( 1 );
$sms->message( 'a different message' );
print "sending message to mobile number ", $sms->recipient();
$sms->send();
DESCRIPTION
A perl module to send SMS messages, using the Genie web2sms gateway. This module will only work with mobile phone numbers that have been registered with Genie (http://www.genie.co.uk/) and uses form submission to a URL that may be subject to change.
AUTHOR
Ave Wrigley <Ave.Wrigley@itn.co.uk>
COPYRIGHT
Copyright (c) 2001 Ave Wrigley. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.