Here's all the code I'm trying to run
#include <Inet.au3>
Local $s_SmtpServer = "smtp.gmail.com"
Local $s_FromName = "Me"
Local $s_FromAddress = "Filipe.Bitt10@gmail.com"
Local $s_ToAddress = "Filipe.Bitt10@gmail.com"
Local $s_Subject = "Test"
Local $as_Body[2]
$as_Body[0] = "Testing the new email udf"
$as_Body[1] = "Second Line"
Local $Response = _INetSmtpMail($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject, $as_Body)
$err = @error
If $Response = 1 Then
MsgBox(0, "Success!", "Mail sent")
Else
MsgBox(0, "Error!", "Mail failed with error code " & $err)
EndIf
Any idea???