NAME
SMS::Send::US::SprintPCS - An SMS::Send driver for the messaging.sprintpcs.com website
SYNOPSIS
# Get the sender, there is no login
my $sender = SMS::Send->new('US::SprintPCS');
# Send a message to ourself
my $sent = $sender->send_sms(
text => 'Messages have a limit of 160 chars',
to => '555-555-5555',
);
# Did it send?
if ( $sent ) {
print "Sent text message\n";
}
else {
print "Text message failed\n";
}
DESCRIPTION
SMS::Send::US::SprintPCS is an regional SMS::Send driver for the US that delivers messages via the http://messaging.sprintpcs.com web site.
This allows you to send SMS messages to anyone with a SprintPCS phone. The recipient will pay for the message as usual.
Preparing to Use This Driver
This driver requires acceptance of a disclaimer and conditions of use form.
You must
manually accept this disclaimer and conditions before you will be able to use this driver.
While we certainly could make the driver do it for you, acceptance of the terms of use implies you understand the cost structure and rules surrounding the use of SprintPCS text messaging.
Disclaimer
Other than dieing on encountering the terms of use form, no other protection is provided, and the authors of this driver take no responsibility for any costs accrued on your phone bill by using this module.
Using this driver will cost you money. YOU HAVE BEEN WARNED
METHODS
SMS::Send::US::SprintPCS-
new()>-
# Create a new sender using this driver my $sender = SMS::Send->new( 'US::SprintPCS' );
$sender->send_sms( ... )
-
The
$sender->send_sms( ... )
method accepts two named parameters,text
andto
.ANY use may result in charges on the recipients phone bill, and you should use this software with care. The author takes no responsibility for any such charges accrued.
AUTHOR
Joshua ben Jore, <jjore at cpan.org>
BUGS
Please report any bugs or feature requests to bug-sms-send-us-sprintpcs at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SMS-Send-US-SprintPCS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc SMS::Send::US::SprintPCS
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=SMS-Send-US-SprintPCS
Search CPAN
ACKNOWLEDGEMENTS
ADAMK's SMS::Send::AU::MyVodafone for the inspiration and source for liberal copying.
COPYRIGHT & LICENSE
Copyright 2006 Joshua ben Jore, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.