在localhost

时间:2015-11-05 15:38:41

标签: asp.net email

我正在使用smtp gmail进行电子邮件验证。它按照标准分配。当新用户注册时,它能够将URL与URL一起发送给用户进行验证。但是在单击用户收到的URL时,无法加载页面。可能是错误

URl地址就像 string url =" http://localhost:49432/EmailVerification.aspx?vcode=" + id

这是我的smtp类邮件的样子

SmtpClient smtp = new SmtpClient();
    smtp.UseDefaultCredentials = false;
     smtp.EnableSsl = true;
    smtp.Host = ConfigurationManager.AppSettings["SMTP"];
     smtp.Port = 587; // 465; //Gmail works on this port
    //  smtp.Port = 25;  
    smtp.Timeout = 100000;
    smtp.Credentials = new System.Net.NetworkCredential(ConfigurationManager.AppSettings["FROMEMAIL"], ConfigurationManager.AppSettings["FROMPWD"]);
    smtp.Send(objmail);
    //ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "MSG", "alert('Mail Sent Sucessfully');", true);
webconfig文件中的

。我已经给了

0 个答案:

没有答案