我的MVC Web應用程序時,新用戶獲取與下面的代碼創建發送電子郵件:asp.net的MVC發送電子郵件錯誤:無法發送電子郵件
private static void SendMail(User user)
{
string ActivationLink = "http://localhost/Account/Activate/" +
user.UserName + "/" + user.NewEmailKey;
var message = new MailMessage("[email protected]", user.Email)
{
Subject = "Activate your account",
Body = ActivationLink
};
var client = new SmtpClient("localhost");
client.UseDefaultCredentials = false;
client.Send(message);
}
這有什麼錯我的代碼,請告訴我。
ERROR : Failure sending mail. {"Unable to connect to the remote server"}
SMTP配置:
檢查您的郵件服務器。 – SLaks 2012-01-06 14:18:01
你會得到什麼錯誤?你的stmp服務器如何配置? – 2012-01-06 14:18:09
垃圾郵件收件箱中的任何東西? – 2012-01-06 14:18:29