Gossamer Forum
Quote Reply
SMS
I want to send SMS from the ICQ Website to Cell Phones.
Does Any one knows what server to connect and what to tell
him in order to send SMS in perl , and which perl module should I use?

pons@gmx.li
Quote Reply
Re: [pons] SMS In reply to
http://www.gossamer-threads.com/...i?post=235189#235189

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] SMS In reply to
Thanks Andy ... I checked the link
But I checked the Perl Forum I found the
following Code from Paul ...
I used it .. it works fine ... I can Send
via this code a pager message to my ICQ
At the moment I want to send a SMS from the
ICQ Website http://sms.icq.com/sms/inbox
to my Cell Phones ... The code
it should log me in into sms.icq.com/sms/inbox
ICQno. + Password ...
then Select Country: MyCountry and
Network # (Area Code): 99 Cell Phone #: 1234567
any one did that before

#!/usr/bin/perl
#======================================
# Copyright Paul 2003.
use strict;
use LWP::UserAgent;
use HTTP::Request::Common qw(GET);
main();
#======================================
sub main {
#-------------------------------------------------------------
# Quick example of ICQ pager.
my $ua = LWP::UserAgent->new( agent => 'Takeshi/1.0', timeout => 30 );
my $url = q|http://wwp.icq.com/scripts/WWPMsg.dll?to=72280424&from=me&fromemail=me@here.com&subject=this&body=message|;
my $res = $ua->request( GET $url );
if ($res->is_success) {
print "Content-type: text/html\n\n";
print $res->content;
}
else {
print "Content-type: text/html\n\n";
print $res->code;
}
}
Quote Reply
Re: [pons] SMS In reply to
I want to write a site that sanding SMS's,
Have you succeeded sending SMS this way?.
Quote Reply
Re: [jutky] SMS In reply to
Hi jutky,

Do you need the message to be sent via a SMS getway? If yes, I have experienced with this kind of scripts.

Cheers,

Cheers,

Dat

Programming and creating plugins and templates
Blog
Quote Reply
Re: [tandat] SMS In reply to
http://www.sms-wap.com/