NAME
Net::SMS::Genie - a module to send SMS messages using the Genie web2sms gateway (http://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.
ENVIRONMENT VARIABLES
Net::SMS::Genie uses LWP::UserAgent to make requests to the Genie gateway. If you are web browsing behind a proxy, you need to set an $http_proxy environment variable; see the documentation for the env_proxy method of LWP::UserAgent for more information.
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.