Possible Duplicate:
Sending email in .NET through Gmail
hello,
Im using code like below but I get an error:
"Unable to connect to the remote server" MailMessage mail = new MailMessage(); mail.To.Add("[email protected]"); mail.From = new MailAddress("[email protected]"); mail.Subject = "Test Email"; string Body = "<b>Welcome to CodeDigest.Com!!</b>"; mail.Body = Body; mail.IsBodyHtml = true; SmtpClient smtp = new SmtpClient(); smtp.Host = "smtp.gmail.com"; smtp.Port = 587; smtp.Credentials = new System.Net.NetworkCredential("[email protected]", "myPass"); smtp.EnableSsl = true; smtp.Send(mail);