i am developing with vb2005, using system.net.mail to send mail using google configuration. a full sample of my code was posted here earlier
With smtp
.Host = "smtp.google.com"
.Port = 465
.UseDefaultCredentials = False
.Credentials = New System.Net.NetworkCredential(mygoogleemail, mypass)
.EnableSsl = true
.Timeout = 60000
End With
i get the operation has timed out. if i change the port to 587, it says that the server does not support secure connection
[EDIT] could firewall be blocking it?
is there anyway to specify sending application name?