SMS::ClickSend - SMS gateway for clicksend.com
use SMS::ClickSend; my $sms = SMS::ClickSend->new( username => 'username', api_key => 'API_KEY...', ); my $res = $sms->send( to => '+61411111111', message => 'This is the message', ); print Dumper(\$res); use Data::Dumper;
SMS::ClickSend is a sms gateway for http://clicksend.us/
API can be found at http://developers.clicksend.com/api/rest/
username
api_key
can be found at https://my.clicksend.com/sms_settings_subaccounts.php
$sms->send( to => '+61411111111', message => 'This is the message', );
more details can be found at http://developers.clicksend.com/api/rest/
$sms->delivery('70A1EFA4-3F61-9D72-556C-D918FF3FC41');
$sms->balance(); $sms->balance('AU');
$sms->history();
Fayland Lam <fayland@gmail.com>
Copyright 2014- Fayland Lam
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
To install SMS::ClickSend, copy and paste the appropriate command in to your terminal.
cpanm
cpanm SMS::ClickSend
CPAN shell
perl -MCPAN -e shell install SMS::ClickSend
For more information on module installation, please visit the detailed CPAN module installation guide.