NAME
SMS::ClickSend - SMS gateway for clicksend.com
SYNOPSIS
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;
DESCRIPTION
SMS::ClickSend is a sms gateway for
API can be found at
METHODS
new
* username
* api_key
can be found at
send
$sms->send(
to => '+61411111111',
message => 'This is the message',
);
more details can be found at
reply
delivery
$sms->delivery('70A1EFA4-3F61-9D72-556C-D918FF3FC41');
balance
$sms->balance();
$sms->balance('AU');
history
$sms->history();
AUTHOR
Fayland Lam
COPYRIGHT
Copyright 2014- Fayland Lam
LICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
SEE ALSO