NAME

SMS::Send::CZ::Smsmanager - SMS::Send driver for SMS Manager - Czech Republic

VERSION

version 1.001

SYNOPSIS

use SMS::Send;

my $sender = SMS::Send->new('CZ::Smsmanager',
	_login    => 'who',
	_password => 'apikey',
	);

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";
}

NAME

SMS::Send::CZ::Smsmanager - SMS::Send driver for SMS Manager - Czech Republic

VERSION

version 1.000

METHODS

send_sms

Sends the message using privider's API at https://http-api.smsmanager.cz/Send and takes additional arguments: 'text' containing the message itself and 'to' with recipient's number.

Processing information is automatically logged to /var/log/smsmanager.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) 2024 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.

AUTHOR

Radek Šiman <rbit@rbit.cz>

COPYRIGHT AND LICENSE

This software is copyright (c) 2024 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.