Hi Group, I am trying to implement a fairly standard procedure for user registration: after a user submits his/her email address, an email is sent, and by clicking on the link contained in that email, the user is registered.
How do we implement this without writing anything to the DB until the user has clicked on the link in the email? This should work even if the user closes the browser and confirms his/her registration a few days later. I have a custom user account/authentication table, so would like to use that for this. Is there any example I can follow? Thanks.