
Net::SMS::MunduSMS - Perl interface for sending SMS using the mundusms.com service.

Version 0.021

use Net::SMS::MunduSMS; my $m = Net::SMS::MunduSMS->new(username => '919988445566' ,password => 'passme' ); $m->add_sms(to => '+919866544992', message => 'hello'); $m->send_sms;

The Net::SMS::MunduSMS Perl module allows you to send SMS in your Perl code, using the paid service of mundusms.com
Constructor, requires two named arguments namely the username & the password for the mundusms.com account.
Add sms to the internal queue, it take two named arguments, to & message.
Send the queued messages stored internally.



S Pradeep, <spradeep@cpan.org>

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

Git repository at http://github.com/spradeep/Perl-Net-SMS-MunduSms

You can find documentation for this module with the perldoc command.
perldoc Net::SMS::MunduSMS
You can also look for information at:

Copyright (C) 2010 by S Pradeep
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.