|
NAMEWWW::TWSMS - Perl extension for send sms by TWSMS. (http://www.twsms.com) SYNOPSIS use WWW::TWSMS;
$sms = WWW::TWSMS->new(Username => "username",
Password => "password",
SmsType => 'now',
SmsEncoding => 'big5'
);
$sms->msgReceiver("phone_number");
$sms->msgData("hello world");
$sms->msgSend();
$sms->success() or die $sms->errorDescription."\n" ;
DESCRIPTIONThis's a Perl interface for send sms by TWSMS. (http://www.twsms.com) WWW::TWSMS->new$sms = new WWW::TWSM->new(Username => 'uname', Password => 'password', ...) The following arguments may be passed to new as a hash.
EXPORTNone by default. SEE ALSOThe API document of TWSMS http://www.twsms.com/dl/api_doc.zip WEBSITEYou can find information about TWSMS at : http://www.twsms.com/ AUTHORTsung-Han Yeh, <snowfly@yuntech.edu.tw> COPYRIGHT AND LICENSECopyright (C) 2006 by Tsung-Han Yeh 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. POD ERRORSHey! The above document had some coding errors, which are explained below:
|