NAME

SMS::Send::NL::Mollie - SMS::Send driver for www.mollie.nl

SYNOPSIS

use SMS::Send;

my $sender = SMS::Send->new('NL::Mollie',
                _username   => 'MyUserName',
                _password   => 'P4ssw0rd!',
                _originator => '0612345678',
                _gateway    => 2,
             );

my $sent = $sender->send_sms(
                text => 'My very urgent message',
                to   => '0687654321',
           ); 

DESCRIPTION

SMS::Send::NL::Mollie is a SMS::Send driver which allows you to send messages through http://www.mollie.nl/.

METHODS

new

The new method takes a few parameters. _username and _password are mandatory, _originator, and _gateway are optional. See Net::SMS::Mollie for details on these parameters.

This driver is a very simplified wrapper around Net::SMS::Mollie and provides a lot less functionality than Net::SMS::Mollie.

send_sms

Takes to as recipient phonenumber, and text as the text that's supposed to be delivered.

SEE ALSO

BUGS

Please report any bugs to http://rt.cpan.org/Ticket/Create.html?Queue=Send-SMS-NL-Mollie

AUTHOR

M. Blom <blom@cpan.org> http://menno.b10m.net/perl/

COPYRIGHT

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

The full text of the license can be found in the LICENSE file included with this module.