Description: Have you ever wanted your AutoIT program to be able to send alerts or other messages to your phone? Well here is a possible solution. All you need is an email account that allows you to use SMTP and the Number and Service Provider of the phone you wish to message. Constants for the different service providers can be found in the UDF. Example Usage: #include "SMS.au3"
$server = "smtp.gmail.com"
$email = "xxx@xxx.xxx"
$username = "xxx@xxx.xxx"
$password = "xxxxxxxx"
$port = 465
$ssl = 1
$number = xxxxxxxxxx
$service = $T_MOBILE
$message = "Hello, This is an AutoIT SMS"
$message2 = "Yep..."
$sms = _SMS_Start($server,$email,$username,$password,$port,$ssl)
_SMS_Send($sms,$number,$service,$message) The UDF: Old Versions: SMS.au3 Most Recent Version: SMS.au3 Thanks: This UDF's SMTP capabilities are taken from Jos' SMTP UDF... Thank you Jos. If you have any suggestions, questions, or anything else, just let me know. Thanks for your time, Disabled Monkey