Verification Email

I searched the forum and was a little surprised that this hasn’t been discussed.

As many websites now do, when someone registers a new account on my site, I want to send a email to the one they entered and require a response before their account is fully functional.

Has anyone worked out a process for this.

Yes, my video training site does it. You create a URL you put in the email that calls HandleSpecialURL for your web app.

Thanks Bob

Yeah, I do something similar to Bob, generate a token stored against the user’s settings and then send an email that goes to a HandleURL (not HandleSpecialURL in my case) location and then redirect to Success/Failure page depending. Same for “Reset Password”, if the token matches the user id param in the URL, then let them into the reset password page.

Hello, what is the routine to be able to do this?