0
TimMackey created
ANZ veriosn 8.3.1 Angular/Core
Forgot Password replies "Invalid email address" to clearly valid email addresses in the AbpUsers and AbpUserAccounts tables. What conditions might be causing this error? What records might be missing or misconfigured in the db?
1 Answer(s)
-
0
Hi Tim,
For forgot password operation, user is queried with the below code block. If the
input.EmailAddress
is correctly retrieved on the server side, the NormalizedEmailAddress might be null or different from EmailAddress of the user record. Could you check it on the database ?var user = await UserManager.FindByEmailAsync(input.EmailAddress);
Thanks,