Re: How do I get the email address of the person who clicked the link in the email?
On Dec 5, 10:15 am, Zeynel wrote: > I am working with Google App Engine python version. The app sends an > email to the user with a link to a page to upload an image as an > avatar. It would be nice to have the email so that I can associate the > avatar with that email. How can I do this? Thank you. One approach would be to assign a unique identifier to the email address, then include that identifier as a parameter in the link that allows for image uploading: http://your.site.tld/avatar/upload/ (for eg) Then the upload process can get the ID from the path and identify the email address with which the image is associated. -- http://mail.python.org/mailman/listinfo/python-list
Re: How do I get the email address of the person who clicked the link in the email?
As a suggestion, you can auto-format your email link so that the email of the user is sent as part of the URL GET argument. Cheers, Xav On 5 December 2010 08:15, Zeynel wrote: > Hello, > > I am working with Google App Engine python version. The app sends an > email to the user with a link to a page to upload an image as an > avatar. It would be nice to have the email so that I can associate the > avatar with that email. How can I do this? Thank you. > -- > http://mail.python.org/mailman/listinfo/python-list > -- http://mail.python.org/mailman/listinfo/python-list