I am creating an ASP.NET MVC 2 site where I want users to verify their email address after registration.
I want to send an email to an address with a link that the user can click to confirm their email, and then process a click on that link (the link will contain a specific identifier, of course).
Of course, this is easy to implement manually , but is there something already built into ASP.NET that has such a function?
source
share