The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SMS::Send::Tellustalk - SMS::Send driver to send messages via Tellustalk Rest API

SYNOPSIS

  use SMS::Send;

  # Create a sender
  my $sender = SMS::Send->new('Tellustalk',
                _login    => 'username',
                _password => 'password',
                _sender   => 'FROM ME', # Optional, max 11 chars.
  );

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

  if ( $sent ) {
                print "Message sent ok\n";
  } else {
                print "Failed to send message\n";
  }

DESCRIPTION

A driver for SMS::Send to send SMS text messages via Tellustalk Rest API

This is not intended to be used directly, but instead called by SMS::Send (see synopsis above for a basic illustration, and see SMS::Send's documentation for further information).

AUTHOR

Eivin Giske Skaaren, <eivin@sysmystic.com>

COPYRIGHT AND LICENSE

Copyright (C) 2015 by Eivin Giske Skaaren

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.