public async Task <IActionResult> OnPostAsync() { if (ModelState.IsValid) { var user = await _userManager.FindByEmailAsync(Input.Email); if (user == null || !(await _userManager.IsEmailConfirmedAsync(user))) { // Don't reveal that the user does not exist or is not confirmed return(RedirectToPage("./ForgotPasswordConfirmation")); } // For more information on how to enable account confirmation and password reset please // visit https://go.microsoft.com/fwlink/?LinkID=532713 var code = await _userManager.GeneratePasswordResetTokenAsync(user); var callbackUrl = Url.Page( "/Account/ResetPassword", pageHandler: null, values: new { code }, protocol: Request.Scheme); _emailTemplateService.AddTemplateField("resetpassword", HtmlEncoder.Default.Encode(callbackUrl)); await _emailTemplateService.BuildHTMLTemplateBodyAsync("ForgotPasswordTemplate.html"); await _emailSender.SendEmailAsync(Input.Email, "Reset Password", _emailTemplateService.HTMLBody); return(RedirectToPage("./ForgotPasswordConfirmation")); } return(Page()); }
public async Task <IActionResult> OnPostAsync(string returnUrl = null) { returnUrl = returnUrl ?? Url.Content("~/"); if (ModelState.IsValid) { var user = new ApplicationUser { UserName = Input.Email, Email = Input.Email }; var result = await _userManager.CreateAsync(user, Input.Password); if (result.Succeeded) { _logger.LogInformation("User created a new account with password."); var userId = await _userManager.GetUserIdAsync(user); var code = await _userManager.GenerateEmailConfirmationTokenAsync(user); var callbackUrl = Url.Page( "/Account/ConfirmEmail", pageHandler: null, values: new { userId = userId, code = code }, protocol: Request.Scheme); emailTemplateService.AddTemplateField("confirmemail", HtmlEncoder.Default.Encode(callbackUrl)); await emailTemplateService.BuildHTMLTemplateBodyAsync("ConfirmEmailTemplate.html"); await _emailSender.SendEmailAsync(Input.Email, "Confirm your email", emailTemplateService.HTMLBody); await _signInManager.SignInAsync(user, isPersistent : false); return(LocalRedirect(returnUrl)); } foreach (var error in result.Errors) { ModelState.AddModelError(string.Empty, error.Description); } } // If we got this far, something failed, redisplay form return(Page()); }
public async Task <IActionResult> OnPostSendVerificationEmailAsync() { if (!ModelState.IsValid) { return(Page()); } var user = await _userManager.GetUserAsync(User); if (user == null) { return(NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.")); } var userId = await _userManager.GetUserIdAsync(user); var email = await _userManager.GetEmailAsync(user); var code = await _userManager.GenerateEmailConfirmationTokenAsync(user); var callbackUrl = Url.Page( "/Account/ConfirmEmail", pageHandler: null, values: new { userId = userId, code = code }, protocol: Request.Scheme); _emailTemplateService.AddTemplateField("confirmnewemail", HtmlEncoder.Default.Encode(callbackUrl)); await _emailTemplateService.BuildHTMLTemplateBodyAsync("EmailResetTemplate.html"); await _emailSender.SendEmailAsync(Input.Email, "Verify New Email Address", _emailTemplateService.HTMLBody); //await _emailSender.SendEmailAsync( // email, // "Confirm your email", // $"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>."); StatusMessage = "Verification email sent. Please check your email."; return(RedirectToPage()); }