[web2py] Re: Email verification for user registration

2012-03-29 Thread Anthony
> > How do we implement this without writing anything to the DB until the user > has clicked on the link in the email? > Interesting. Maybe put the email address in the link, and also hash the email address using a private key and add that to the link as well. When the link is clicked, check t

[web2py] Re: Email verification for user registration

2012-03-29 Thread pbreit
Web2py has some functionality built-in that may work for you. In a model file: auth.settings.registration_requires_verification = True I don't know the exact behavior.