2
下面的函數在控制檯應用程序中工作,但它不在我的asp.net網站中工作。我收到一個錯誤: 根據驗證程序,遠程證書無效。根據驗證程序,遠程證書無效。 GMAIL
public static void SendEmail(MailMessage mm)
{
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.Credentials = new NetworkCredential("[email protected]", "Pass");
smtp.Send(mm);
}