NAME

SMS::Send::ClickSend - SMS::Send joins SMS::ClickSend

SYNOPSIS

use SMS::Send;

my $sender = SMS::Send->new('ClickSend',
    _username => 'username',
    _api_key => 'api_key',
);

# Send a message
my $sent = $sender->send_sms(
    text => 'This is a test message',
    to   => '+61411111111',
);

# Did the send succeed.
if ( $sent ) {
    print "Message sent ok\n";
} else {
    print "Failed to send message\n";
}

DESCRIPTION

Please read SMS::ClickSend for more details.

send_sms

that's wrap of send on SMS::ClickSend

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