我想測試一下在我的asp.net MVC應用程序發送電子郵件,但我不斷收到以下拋出的異常:異常在asp.net MVC應用程序發送電子郵件時
「試圖訪問取得通過其訪問權限ipaddress禁止的方式ipaddress:587「
任何想法它可能是什麼?我已關閉Windows防火牆,我仍然得到例外。我已經包括使用System.Net.Mail;聲明和我的代碼如下:
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com", 587);
SmtpServer.Credentials = new System.Net.NetworkCredential("[email protected]", "mypassword");
mail.From = new MailAddress("[email protected]");
mail.To.Add("[email protected]");
mail.Subject = "Testing application";
mail.Body = "Testing the application email";
SmtpServer.Send(mail);
我以前使用gmail發送和思考我添加'SmtpServer.EnableSsl = true;'就在'.Send'之前。試圖找到我的代碼現在... –
我試過SmtpServer.EnableSsl = true;早些時候,它沒有工作。 –