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::Send::CZ::Smsmidlet - SMS::Send driver for SMSMidlet - Czech Republic

VERSION

version 1.000

SYNOPSIS

use SMS::Send;

  my $sender = SMS::Send->new('CZ::Smsmidlet',
        _login    => 'who',
        _password => 'secret',
        );
  
  my $sent = $sender->send_sms(
        text => 'Test SMS',
        to   => '604111111',
        );
  
  # Did it send?
  if ( $sent ) {
        print "Sent test message\n";
  } else {
        print "Test message failed\n";
  }

METHODS

log

Logs message to /var/log/smsmidlet.log if this file is accessible and writable

send_sms

Sends the message using prividers API at https://smsmidlet.com/http and takes additional arguments: 'text' containgin the message itself and 'to' with recipient's number.

Processing information is automatically logged to /var/log/smsmidlet.log to allow tracking of possible problems.

Returns true if the msssage was successfully sent

Returns false if an error occured

AUTHOR

Radek Šiman <rbit@rbit.cz>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by R-Bit Technology, s.r.o.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.