'ENVIAR UN EMAIL
Dim MM As New MailMessage
MM.Subject = "bla bla "
MM.To.Add(New System.Net.Mail.MailAddress(EmailTo, Nombre))
MM.Body = " bla bla"
MM.IsBodyHtml = True
Dim SC = New SmtpClient()
SC.Host = "smtp.zoho.com"
SC.Port = 465
SC.EnableSsl = True
SC.UseDefaultCredentials = False
SC.Credentials = New System.Net.NetworkCredential("
boletin@outl.es", "mypass")
SC.Host = "smtp.gmail.com"
SC.Port = 587
SC.Credentials = New System.Net.NetworkCredential(my gmail account and pass)
So, How can or what is happening with soho smtp server, What I need to change ?