我一直致力于一个涉及发送电子邮件的项目,我终于让它上班了但是在几天不使用我的系统之后,我再次尝试运行代码而我得到了#34;无法连接到远程服务器"错误。
任何人都可以为我查看代码,我已经使用了一个多星期。
try
{
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
mail.From = new MailAddress("***@gmail.com");
mail.To.Add("******@gmail.com");
mail.Subject = "Test";
mail.Body = ("the mdfjvnloifvhsuifv");
SmtpServer.Port = 587;
SmtpServer.Credentials = new System.Net.NetworkCredential("***@gmail.com", "pwd");
SmtpServer.EnableSsl = true;
SmtpServer.Send(mail);
Label1.Text = "MAIL SENT!!!";
}
catch (Exception ex)
{
Label1.Text = ex.ToString();
//throw;
}
答案 0 :(得分:1)
这可能与防病毒设置有关。 一个奇怪的行为是,当我们使用visual studio进行调试时,问题就不会出现了!