NAME
SMS::Send::DistributeSMS - SMS::Send DistributeSMS Driver
VERSION
Version 0.01
SYNOPSIS
# Create a sender
my $send = SMS::Send->new('DistributeSMS'
_account_no => '1234',
_login => 'login',
_password => 'password',
_proxy => 'http://host:port/', # optional.
_verbose => 1, # optional. for debugging purposes only.
);
# Send a message
$send->send_sms(
text => 'Hi there',
to => '+61-400-111-222',
_from => 'TEST',
);
# Get send status (NOTE: specific to this driver)
my @status = $sms->status_sms();
print "status: $status[0] (state: $status[1])\n";
DESCRIPTION
SMS::Send::DistributeSMS is a driver for SMS::Send for the SMS gateway at www.distributesms.com.au.
It currently supports the ability to send an SMS to any country in the world. This is possible by including a translation map from international dialing codes to DistributeSMS specific IDs, requiring no intervention or assistance on the programmer's behalf.
As an added bonus, retrieving the send status is possible, although specific to this driver only.
Bugs, fixes, flames, rants, patches and messages are welcome.
AUTHOR
David Sobon, <dsobon.at.cpan.org>
BUGS
Please report any bugs or feature requests to bug-sms-send-distributesms at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SMS-Send-DistributeSMS. 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::DistributeSMS
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=SMS-Send-DistributeSMS
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2008 David Sobon, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.