Hi.,
I am using following code to send sms through e-mail
Its working fine., except for vodafone network..
I surfed in the net and found that vodafone network stops this service, i.e sending sms via email
Is there anyother way or built in modules available for sending free sms to mobile using perl script.
Thanks.,
Sabarish
I am using following code to send sms through e-mail
Code:
use Mail::Sendmail;
%mail = (To => '10digitMobileNo@airtelkk.com',
From => "mymail\@company.com",
Message => "SMS Server"
);
$mail{Smtp} = '10.0.1.6';
if (sendmail (%mail)) { print "SMS sent OK.\n" }
else { print "Error sending mail: $Mail::Sendmail::error \n" }
I surfed in the net and found that vodafone network stops this service, i.e sending sms via email
Is there anyother way or built in modules available for sending free sms to mobile using perl script.
Thanks.,
Sabarish
Comment