Nik has asked for the wisdom of the Perl Monks concerning the following question:
#/usr/bin/perl -w use WWW::SMS; my $sms = WWW::SMS->new("36973814824", "This is a test!"); for ( $sms->gateways(sorted => 'reliability') ) #for every compati +ble gateway { if ( $sms->send( $_ ) ) { #try to send sms last; #until it succeds } else { print $WWW::SMS::Error; #here is the erro +r } }
when i try to run it i get
No matching international prefix found at C:/Perl/site/lib/WWW/SMS.pm line 36
Failed at step 1 of module GoldenTelecom.pm
does anyona have a workign module to help me sent sms??
20030804 Edit by Corion: Added formatting
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: notify by sms!
by antirice (Priest) on Aug 04, 2003 at 09:53 UTC | |
by Nik (Initiate) on Aug 04, 2003 at 11:34 UTC | |
by antirice (Priest) on Aug 04, 2003 at 11:40 UTC | |
|
Re: notify by sms!
by bm (Hermit) on Aug 04, 2003 at 09:44 UTC |