I'm trying to send sms using perl script. I have tried the below modules. Please help me ..
use strict;
use warnings;
use Net::SMS::160By2;
my $username = "xxxxx";
my $password = "yyyyy";
my $msg = "Hi";
my $to = "zzzzzz";
my $obj = Net::SMS::160By2->new($username, $password);
$obj->send_sms($msg, $to);
Thanks in advance.