我一直在一个涉及发送电子邮件的项目中,终于使它正常工作,但是在不使用我的系统几天后,我尝试再次运行该代码,并且出现“无法连接到远程服务器”错误。

请任何人为我签出代码,我已经使用了一个多星期。

    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;
        }

最佳答案

这可能与防病毒设置有关。
奇怪的是,当我们使用Visual Studio进行调试时,问题不会出现!

07-24 22:21