0
Debugging saw that the method Sendemailasync of controller account does not run and returns no error, it is simply ignored, all the settings are correct userid, code and Protocol.
string code = await _userManager.GenerateEmailConfirmationTokenAsync(user.Id);
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
await _userManager.SendEmailAsync(user.Id, "Confirmar sua conta", "Confirme sua conta clicando <a href=\"" + callbackUrl + "\">aqui</a>");
someone knows what can be?
Do not put photo of your codes, because if we need to test we will have to write everything from scratch, so we can reproduce your problem copy your code and put it in a code block by clicking on Edit
– Raizant
thanks for the correction.
– user77473