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::Axima - SMS::Send driver for Axima - Czech Republic

VERSION

version 1.000

SYNOPSIS

use SMS::Send;

  my $sender = SMS::Send->new('CZ::Axima',
    _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

send_sms

Sends the message using provider's API at https://smsgateapi.sms-sluzba.cz/apipost30/sms and takes additional arguments: 'text' containgin the message itself and 'to' with recipient's number.

Processing information is automatically logged to /tmp/axima.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) 2019 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.