Jump to content

Recommended Posts

Posted

Really, how can I get this too work? The example which is with the help file doesn't even work.

#include <INet.au3>

$s_SmtpServer = "gmail-smtp-in.l.google.com"

$s_FromName = "Test"

$s_FromAddress = "test@test.com"

$s_ToAddress = "MyGmail@gmail.com"

$s_Subject = "My Test UDF"

Dim $as_Body[2]

$as_Body[0] = "Testing the new email udf"

$as_Body[1] = "Second Line"

$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

Does this function not work with gmail perhaps or am I doing something completly wrong?

Posted (edited)

Thank you sir.

Nice, I looked it up. Just one question though. Why do you need secure mode? It's very possible to do this manualy via command without logging into any gmail accounts.

Edited by tW34k

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...