Jump to content

_INetSmtpMail


tW34k
 Share

Recommended Posts

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?

Link to comment
Share on other sites

  • Developers

Gmail requires secure SMTP ... Search in the Examples forum for the _InetSmtpMailCom() UDF I wrote that supports Gmail ...

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...