Hi, web2py experts. The task I'm trying to accomplish is the following:
-permit a person browsing my site to upload a file to my site through a
form (implemented through crud.create())
-the visitor is not required to establish an account or log in to
upload a file
-the user is required to provide an email address in order for the
file to be uploaded
-after the user uploads a file, the file is held in escrow/limbo, and a
validation/verification email is sent to the user
-once the user clicks on the link in the validation email, the file is
posted to the page, and is made publicly available for download
What's the best way to go about doing this? Thanks!
--