in reply to send message to sprint PCS through their site
use LWP::UserAgent; use HTTP::Request::Common qw(POST); sub message_PCS{ my $msg = $_[0]; $ua = LWP::UserAgent->new(); my $req = POST 'http://www.messaging.sprintpcs.com/sms/check_m +essage_syntax.html', [ mobilenum => '**********', message => $message , call +backnum => '**********', ack_add =>'redalert\@somehwere.com'] $content = $ua->request($req)->as_string; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: send message to sprint PCS through their site
by metlhed_ (Beadle) on Apr 16, 2002 at 23:56 UTC | |
by shotgunefx (Parson) on Apr 17, 2002 at 00:45 UTC | |
by Anonymous Monk on May 10, 2004 at 23:28 UTC | |
by shotgunefx (Parson) on May 17, 2004 at 13:34 UTC |