| Net-SMS-TMobile-UK documentation | Contained in the Net-SMS-TMobile-UK distribution. |
Net::SMS::TMobile::UK - Send SMS Messages via the T-Mobile UK Website.
use Net::SMS::TMobile::UK; my $sms = Net::SMS::TMobile::UK->new(username=>$username, password=>$password); $sms->sendsms(to=>$target, message=>$message);
T-Mobile is a major mobile network. Their UK Website allows the sending of 'webtext' messages which are an SMS sent from the users mobile number and charged against their mobile phone account. This module allows the sending of these messages - ideal if you pay for a bundle of SMS messages in advance.
Please note that this module is nothing to do with T-Mobile, and will probably stop working should T-Mobile ever change the method for sms submission.
Creates the Net::SMS::TMobile::UK object.
Usage:
my $sms = Net::SMS::TMobile::UK->new (username=>$username, password=>$password);
The complete list of arguments is:
username : Your registered T-Mobile username. password : Your registered T-Mobile password. useragent : Name of the user agent you want to display to T-Mobile. debug : 0 (default) or 1 Debug is optional and defaults to off, but can be set to 1 which prints out the text of the http responses.
Sends a message through the T-Mobile website.
Usage:
$sms->sendsms( to => $mobile_phone, message => $msg, report => 0 );
where $mobile_phone is the mobile phone number that you're sending a message to and $msg is the message text. Setting report to 1 will enable delivery reports, but is otherwise optional.
This method returns 1 if we successfully send the message and undef on failure.
Returns a code that describes the last error ocurred.
Example:
if(my $error = $sms->error) {
if($error == 5) {
die("Message or Destination missing\n");
} elsif ($error == 2) {
die("Username or password invalid\n");
} else {
die("Unexpected fault\n");
}
}
Using same error codes as Net::SMS::Clickatell where possible:
0 - No error 1 - Username or password not defined (not used, as we require these during module construction) 2 - Username or password wrong 3 - Server has problems 4 - The message couldn't be sent 5 - No message or destination specified
Ben Charlton, <benc at cpan.org>
Please report any bugs or feature requests to
bug-net-sms-tmobile-uk at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-SMS-TMobile-UK.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Net::SMS::TMobile::UK
You can also look for information at:
Net:SMS::Clickatell by Roberto Alamos Moreno for inspiration.
Copyright (c) 2007,2008 Ben Charlton. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
This software or the author aren't related to T-Mobile in any way.
| Net-SMS-TMobile-UK documentation | Contained in the Net-SMS-TMobile-UK distribution. |
# # Net::SMS::TMobile::UK . This module allows the sending of SMS Text Messages via # the T-Mobile UK Website. # # Author: Ben Charlton <ben@spod.cx> # # Copyright (c) 2007-2009 Ben Charlton. All Rights Reserved. # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # # package Net::SMS::TMobile::UK; our $VERSION = '0.03'; use strict; use HTTP::Request::Common qw(POST GET); use LWP::UserAgent; my $debug = 0;
sub new { my $class = shift; unless ($class) { return undef; } my %args = ( useragent=>'TMobileUK.pm/'.$Net::SMS::TMobile::UK::VERSION, @_ ); unless ($args{username}) { return undef; } unless ($args{password}) { return undef; } if ($args{debug} == 1) { $debug = 1; } my $ua = LWP::UserAgent->new(); $ua->cookie_jar( {} ); return bless { PASSWORD=>$args{password}, USERNAME=>$args{username}, USERAGENT=>$args{useragent}, ERROR=>0, LWP_UA=>$ua }, $class; }
sub sendsms () { my $self = shift; my %args = ( @_ ); my $ua = $self->{LWP_UA}; $ua->agent($self->{USERAGENT}); my $target=$args{to}; my $message=$args{message}; my $report='on' if $args{report}; ## Check we have a target and message unless ($target && $message) { $self->error(5); return undef; } ## Get initial session cookie. Sadly no longer optional :( my $req = GET 'http://www.t-mobile.co.uk/'; my $res = $ua->request($req); ## Log in and get a session cookie $req = POST 'https://www.t-mobile.co.uk/service/your-account/login/', [ username=>$self->{USERNAME}, password=>$self->{PASSWORD}, submit=>"Log in"]; $res = $ua->request($req); if ($debug) { print "Login request:\n==================\n"; print $res->as_string; } ## Check for successful request unless ($res->is_redirect) { $self->error(3); return undef; } my $content = $res->as_string; ## check for valid credentials if ($content =~ m/Please enter a valid username and password/) { $self->error(2); return undef; } ## Collect struts token for SMS form submission: $req = GET 'https://www.t-mobile.co.uk/service/your-account/private/wgt/send-text-preparing/'; $res = $ua->request($req); if ($debug) { print "Token request:\n==================\n"; print $res->as_string; } unless ($res->is_success) { $self->error(3); return undef; } $content = $res->as_string; my ($token) = ($content =~ m/<input type="hidden" name="org.apache.struts.taglib.html.TOKEN" value="([^"]+)">/is); unless ($token) { $self->error(4); return undef; } ## Post to SMS sending form with message details and struts token. $req = POST 'https://www.t-mobile.co.uk/service/your-account/private/wgt/send-text-processing/', [ 'org.apache.struts.taglib.html.TOKEN'=>$token, 'selectedRecipients'=>$target, 'message'=>$message, 'sendDeliveryReport'=>$report, 'submit'=>'Send' ]; $res = $ua->request($req); if ($debug) { print "SMS POST:\n==================\n"; print $res->as_string; } unless (($res->is_success) or ($res->is_redirect)) { $self->error(3); return undef; } $content = $res->as_string; ## Check for success if ($content =~ m/(Success|sent-confirmation)/is) { return 1; } else { $self->error(4); return undef; } }
sub error { my $self = shift; if(!defined $self) { return undef; } my $error = shift; if(!defined $error) { return $self->{ERROR}; } else { $self->{ERROR} = $error; return 1; } }
1;