Other NET and iNET library - cannot send email from server

Adilson Jacinto

Active Member
Licensed User
Longtime User
Hi all,

I am trying to send an email using my server information but it does not work. This how i am doing it.

B4X:
sendMail.Initialize("server.privatedns.com", 587, "[email protected]", "xxxxx", "sendMail")
        sendMail.StartTLSMode = True
        sendMail.UseSSL = False
        sendMail.Subject = "Welcome to IQB App: Activation Code"
        sendMail.To.Add("[email protected]")
        sendMail.Sender = "Test"
        sendMail.Body = "test"
        sendMail.Send

The following does not throw any errors it just don't send the email, and cannot even see what is happening. Any ideas?

Thanks
 
Top