Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
SMS::Send::NANP::Raco_TMO - SMS::Send driver for RacoWireless T-Mobile Web Service
SYNOPSIS
Using SMS::Send Driver API
SMS-Send.ini
[NANP::Raco_TMO]
username=myuser
password=mypass
use SMS::Send;
my $service = SMS::Send->new('NANP::Raco_TMO');
my $success = $service->send_sms(
to => '+1-800-555-1212',
text => 'Hello World!',
);
DESCRIPTION
This package provides an SMS::Send driver against the SMS web service at RacoWireless https://t-mobile.racowireless.com/SMSRicochet2.0/
USAGE
use SMS::Send::NANP::Raco_TMO;
my $service = SMS::Send::NANP::Raco_TMO->new(
username => $partnerID,
password => $webServiceKey,
);
my $success = $service->send_sms(
to => '+18005551212',
text => 'Hello World!',
);
METHODS
This package is a trivial sub class of the package SMS::Send::Driver::WebService all of the work is in that Driver base package.
send_sms
Sends the SMS message and returns 1 for success and 0 for failure or die on critical error.
PROPERTIES
username
password
url
Default: https://t-mobile.racowireless.com/SMSRicochet2.0/Send.asmx/SendSMS
BUGS
SUPPORT
AUTHOR
Michael R. Davis
CPAN ID: MRDVT
Satellite Tracking of People, LLC
mdavis@stopllc.com
http://www.stopllc.com/
COPYRIGHT
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.