不使用ASP.NET Identity Framework发送电子邮件

时间:2017-06-22 01:10:34

标签: c# asp.net email asp.net-identity

我正在使用此代码发送电子邮件以重置用户密码:

//
        // POST: /Account/ForgotPassword
        [HttpPost]
        [AllowAnonymous]
        [ValidateAntiForgeryToken]
        public async Task<JsonResult> ForgotPassword(ForgotPasswordViewModel model, bool CaptchaValid)
        {
            string mensaje = String.Empty;

            if (ModelState.IsValid)
            {
                if (!CaptchaValid)
                    mensaje = "ERROR: Captcha inválido.";
                else
                {
                    var user = await UserManager.FindByEmailAsync(model.Email);
                    if (user == null || !(await UserManager.IsEmailConfirmedAsync(user.Id)))
                    {
                        mensaje = "ERROR: La dirección de correo electrónico no está registrada.";
                    }
                    else
                    {
                        var provider = new DpapiDataProtectionProvider("WebAttendance");
                        UserManager.UserTokenProvider = new DataProtectorTokenProvider<ApplicationUser, string>(provider.Create("UserToken")) as IUserTokenProvider<ApplicationUser, string>;
                        string code = await UserManager.GeneratePasswordResetTokenAsync(user.Id);
                        var callbackUrl = Url.Action("ResetPassword", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                        await UserManager.SendEmailAsync(user.Id, "Reset Password", "Por favor, cambie su contraseña al hacer click <a href=\"" + callbackUrl + "\">aquí</a>");
                        return Json("INFO: Se envió un mail a su cuenta de correo con instrucciones para cambiar su contraseña.");
                    }
                }
            }

            // If we got this far, something failed, redisplay form
            return Json(mensaje);
        }

以上代码运行时没有任何错误,但实际上并未发送电子邮件。

这是Web.config条目:

  <system.net>
    <mailSettings>
      <smtp from="info@xxx.com">
        <network host="mail.desytec.cl" password="xxxx" port="587" userName="yyy@xxx.cl"  enableSsl="false"/>
      </smtp>
    </mailSettings>
  </system.net>

顺便说一句,在阅读一些帖子时,我知道我必须在App_Start中拥有IdentityConfig.cs文件,但该文件丢失了。这可能是原因吗?

1 个答案:

答案 0 :(得分:0)

你可能已经得到了答案,但这是Google向我展示的第一篇文章,所以我正在回答它的完整性。

查看IdentityConfig.cs文件夹中的App_Start文件。您应该找到类似于以下的代码:

public class EmailService : IIdentityMessageService {
    public Task SendAsync(IdentityMessage message) {
        // Plug in your email service here to send an email.
        return Task.FromResult(0);
    }
}

我误解了其他几篇帖子,并认为我必须使用上面的代码创建一个新类。相反,您需要更新此方法以使用您要使用的任何电子邮件服务发送电子邮件。

我最终得到了类似的东西,但不完全相同,所以你必须测试这是否真的适合你。

// code from https://stackoverflow.com/questions/40674457/how-to-configure-sender-email-credentials-for-asp-net-identity-usermanager-sende
public async Task SendAsync(IdentityMessage message) {
    // Plug in your email service here to send an email.
    SmtpClient client = new SmtpClient();
    await client.SendMailAsync("email from web.config here",
                                message.Destination,
                                message.Subject,
                                message.Body);
}