Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.64 KB | None | 0 0
  1. ;##################################
  2. ; Variables
  3. ;##################################
  4. $SmtpServer = "mail.gmx.net"                            ; address for the smtp-server to use - REQUIRED
  5. $FromName = "X"                                         ; name from who the email was sent
  6. $FromAddress = "X"                                      ; address from where the mail should come
  7. $ToAddress = "EmpfaengerMail@gmx.de"                    ; destination address of the email - REQUIRED
  8. $Subject = "X"                                          ; subject from the email - can be anything you want it to be
  9. $Body = "X"                                             ; the messagebody from the mail - can be left blank but then you get a blank mail
  10. $AttachFiles = ""                                       ; the file(s) you want to attach seperated with a ; (Semicolon) - leave blank if not needed
  11. $CcAddress = ""                                         ; address for cc - leave blank if not needed
  12. $BccAddress = ""                                        ; address for bcc - leave blank if not needed
  13. $Importance = "Normal"                                  ; Send message priority: "High", "Normal", "Low"
  14. $Username = "SenderMail@gmx.de"                         ; username for the account used from where the mail gets sent - REQUIRED
  15. $Password = "******"                                ; password for the account used from where the mail gets sent - REQUIRED
  16. $IPPort = 25                                            ; port used for sending the mail
  17. $ssl = 0                                                ; enables/disables secure socket layer sending - put to 1 if using httpS
  18. ;~ $IPPort=465                                          ; GMAIL port used for sending the mail
  19. ;~ $ssl=1                                               ; GMAILenables/disables secure socket layer sending - put to 1 if using httpS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement