Lempke 0 Report post Posted April 26, 2006 I am having trouble with automatically sending the mail aftre it's created. I've looked already in the help file and the forum, but can't find an answer. This is what I have so far: #include <INet.au3> Dim $DAG $DAG = @WDAY IF $DAG = 1 Then $Var1 = "Zondag " & @MDAY & "-" & @MON & "-" & @YEAR Else IF $DAG = 2 Then $Var1 = ,"Maandag " & @MDAY & "-" & @MON & "-" & @YEAR Else IF $DAG = 3 Then $Var1 = "Dinsdag " & @MDAY & "-" & @MON & "-" & @YEAR Else IF $DAG = 4 Then $Var1 = "Woensdag " & @MDAY & "-" & @MON & "-" & @YEAR Else IF $DAG = 5 Then $Var1 = "Donderdag " & @MDAY & "-" & @MON & "-" & @YEAR Else IF $DAG = 6 Then $Var1 = "Vrijdag " & @MDAY & "-" & @MON & "-" & @YEAR Else IF $DAG = 7 Then $Var1 = "Zaterdag " & @MDAY & "-" & @MON & "-" & @YEAR Endif Endif Endif Endif Endif Endif Endif $Address = "somthing@something.com" $Subject = $Var1 $Body = "This mail is automatically generated" MsgBox(0,'E-Mail has been opened', "Creating Mail message " & _INetMail($address, $subject, $body),3) Share this post Link to post Share on other sites
GaryFrost 11 Report post Posted April 26, 2006 Try this, you had a comma where it didn't belong in the second $Var1 = statement #include <INet.au3> Dim $DAG = @WDAY Select Case $DAG = 1 $Var1 = "Zondag " & @MDAY & "-" & @MON & "-" & @YEAR Case $DAG = 2 $Var1 = "Maandag " & @MDAY & "-" & @MON & "-" & @YEAR Case $DAG = 3 $Var1 = "Dinsdag " & @MDAY & "-" & @MON & "-" & @YEAR Case $DAG = 4 $Var1 = "Woensdag " & @MDAY & "-" & @MON & "-" & @YEAR Case $DAG = 5 $Var1 = "Donderdag " & @MDAY & "-" & @MON & "-" & @YEAR Case $DAG = 6 $Var1 = "Vrijdag " & @MDAY & "-" & @MON & "-" & @YEAR Case $DAG = 7 $Var1 = "Zaterdag " & @MDAY & "-" & @MON & "-" & @YEAR EndSelect $Address = "somthing@something.com" $Subject = $Var1 $Body = "This mail is automatically generated" MsgBox(0,'E-Mail has been opened', "Creating Mail message " & _INetMail($address, $subject, $body),3) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference. Share this post Link to post Share on other sites
Lempke 0 Report post Posted April 27, 2006 Thx, didn't see that. But HOW can I send the mail after it's created? Share this post Link to post Share on other sites
Lempke 0 Report post Posted April 27, 2006 Isn't there anybody who can help me? I tried using send() command, but that doesn't work. It is if he can't detect the window from the mail. Share this post Link to post Share on other sites