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

NAME

SMS::Send::Iletimerkezi - SMS::Send driver for iletimerkezi.com

VERSION

Version 0.01

SYNOPSIS

Quick summary of what the module does.

use SMS::Send;

# create new sender object with iletimerkezi driver

my $sender = SMS::Send->new('Iletimerkezi', _api_key => '<your iletimerkezi.com api key>', _api_secret => '<your iletimerkezi.com api secret>', _sender => 'ILT MRKZ', _encoding => 'utf8', ); # Send a message to me my $sent = $sender->send_sms( text => 'Hello from Perl', to => '+905321112233', ); # Success? if ( $sent ) { print "Sent test message\n"; } else { print "Failed to send test message\n"; }

new

The new constructor takes three parameters, which should be passed through from the SMS::Send constructor.

_api_key and _api_secret can be found in your account / settings / api _encoding: one of gsm0338|gsm0338-tr|utf8 or can be left blank to use account default _sender: the alpha-numeric sender name you want to send message with

AUTHOR

Engin Dumlu, <engindumlu at gmail.com>

BUGS

Please report any bugs or feature requests to bug-sms-send-iletimerkezi at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SMS-Send-Iletimerkezi. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc SMS::Send::Iletimerkezi

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2018 Engin Dumlu.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.