Advertisement
Guest User

Untitled

a guest
Jun 13th, 2017
504
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.48 KB | None | 0 0
  1. #Include<file.au3>
  2. #include <INet.au3>
  3.  
  4. $SmtpServer = "smtp.googlemail.com.at:465"
  5. $FromName = "Name des Senders"
  6. $FromAddress = "xxx@googlemail.com"
  7. $ToAddress = "anderexxx@googlemail.com"
  8. $Subject = "Sub"
  9. $Body = "Hi test der Email.exe"
  10. $Username = "User"
  11. $Password = "Password"
  12.  
  13. RunWait("Sendemail.exe -t " & $ToAddress & " -u " & $Subject & " -m " & $Body & " -o username=" & $Username & " password=" & $Password & " -s " & $SmtpServer & " -f " & $FromAddress, "", @SW_HIDE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement