Hi all, I need to send a sms from my autoit script when some error occurs in the system. I am stuck in the sms part. I checked the forum and got some code for sending sms. i am sending sms using my gmail and i can see the message in my gmail send mail items but the message never arrives in my phone. I am in india and service provider i am using is airtel. Please help me. I am not sure what wrong i am doing here $server = "smtp.gmail.com" $email = "xxxx@gmail.com" $username = "xxxx" $password = "xxxxxxxxx" $port = 25 $ssl = 1 ;$number= 123456 $service = "91n@airtelmobile.com" $message = "This is a test SMS" $sms = _SMS_Start($server,$email,$username,$password,$port,$ssl) _SMS_Send($sms,$number,$service,$message)