#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.4.0
 Author:         myName
 Version:		 1.0.0
 Date:			 theDate

 Script Function:
	Template AutoIt script.

#ce ----------------------------------------------------------------------------

#include "C:\Programmieren\AutoIt\SMTP Mailer.au3"

BlockInput(1)

$SmtpServer = "asmtp.mail.xxx.ch"              				; address for the smtp-server to use - REQUIRED
$FromName = "Test"                    	 	   				 ; name from who the email was sent
$FromAddress = "test@test.net" 							    ; address from where the mail should come
$ToAddress = "test@test.net"   							    ; destination address of the email - REQUIRED
$Subject = "Test"                 							 ; subject from the email - can be anything you want it to be
$Body = ""                             					    ; the messagebody from the mail - can be left blank but then you get a blank mail
$AttachFiles = ""                    					    ; the file you want to attach- leave blank if not needed
$CcAddress = ""      				                    	; address for cc - leave blank if not needed
$BccAddress = ""    									    ; address for bcc - leave blank if not needed
$Importance = "Normal"              				        ; Send message priority: "High", "Normal", "Low"
$Username = "test@test.net"          		  	   	      ; username for the account used from where the mail gets sent - REQUIRED
$Password = "test"               			   			     ; password for the account used from where the mail gets sent - REQUIRED
$IPPort = 25                          				        ; port used for sending the mail
$ssl = 1                              				        ; enables/disables secure socket layer sending - put to 1 if using httpS
;~ $IPPort=465                          					; GMAIL port used for sending the mail
;~ $ssl=1                               					; GMAILenables/disables secure socket layer sending - put to 1 if using httpS

$Body = "Test"
$rc = _INetSmtpMailCom($SmtpServer, $FromName, $FromAddress, $ToAddress, $Subject, $Body, $AttachFiles, $CcAddress, $BccAddress, $Importance, $Username, $Password, $IPPort, $ssl)

BlockInput(0)

Exit