I've separated the asp.net mvc user registry in an area
Control Area
In a registration action, it sends the confirmation link, it is generated as follows
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
When you receive the email, it looks like this:
http://localhost:50855/Controle/Account/ConfirmEmail?userId..
It ends up getting the name of the area, and the Account is outside the area
How can I resolve this?