Send email via vb.net web application
问题 I'm trying to send a simple plain-text email through my VB.net web application. I've followed the instructions here: http://www.systemnetmail.com/faq/3.1.1.aspx But, regardless of what email addresses I use, I keep getting the message "unable to connect to the remote server". Here is my code 'Create the mail message Dim mail As New MailMessage() 'set the addresses mail.From = New MailAddress("<email1>") mail.To.Add("<email2>") 'set the content mail.Subject = "This is an email" mail.Body =