Send an email with AutoIt
How to send an email with AutoIt? Just need a clean example and explanation, containing: to from subject message There are two main ways to go with built in code, _INetMail() or _INetSmtpMail() Below are the simple code examples from the help file. If you have any specific questions about how they work or how to implement them not covered by the help file please leave a comment. In my opinion the _INetSmtpMail() route is more reasonable. Below is some example code of it. #include <INet.au3> $s_SmtpServer = "mysmtpserver.com.au" $s_FromName = "My Name" $s_FromAddress = "From eMail Address" $s