The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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 http://clicksend.us/

API can be found at http://developers.clicksend.com/api/rest/

METHODS

new

send

$sms->send(
    to => '+61411111111',
    message => 'This is the message',
);

more details can be found at http://developers.clicksend.com/api/rest/

reply

delivery

$sms->delivery('70A1EFA4-3F61-9D72-556C-D918FF3FC41');

balance

$sms->balance();
$sms->balance('AU');

history

$sms->history();

AUTHOR

Fayland Lam <fayland@gmail.com>

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