Hi all, newb to Perl here. I'm trying to use the Net:SNPP package to send a page, and getting the above error when trying to send. Here's my code:
I think that the problem may be that we're running Apache on top of a windows server as that seemed to introduce some other problems, but this doesn't make sense to me since I'm definitely defining $snpp, aren't I?
Thanks in advance.
-Karim Varela
Code:
my $host = "snpp.cingular.com:444"; my $snpp = Net::SNPP->new( $host ); $snpp->send( Pager => $to, Message => $message,); $snpp->quit;
Thanks in advance.
-Karim Varela
Comment