How to send to gmail account ?
Posted: Wed Jun 05, 2013 11:51 am
Well i tried using the example, but i don't know...
Code: Select all
InitNetwork()
; Note: change the address and smtp to have a working example
;
If CreateMail(0, "primoz.fs@gmail.com", "Hello")
AddMailRecipient(0, "primoz.fs@gmail.com", #PB_Mail_To)
SetMailBody(0, "This is a body !" + #CRLF$ + "Second line")
Debug SendMail(0, "smtp.gmail.com")
EndIf