Re: How can I send a password recovery e-mail to a Customer/User in Django?

2016-09-27 Thread João Rodrigues
Thanks a lot. I solved it. :) I got some more information in this page: http://www.programcreek.com/python/example/61528/django.contrib.auth.forms.PasswordResetForm -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: How can I send a password recovery e-mail to a Customer/User in Django?

2016-09-25 Thread Gergely Polonkai
Hello, the trick is not in the email sending, but in resetting the password. Assuming you don't use any user managing apps (as you didn't state it), you will have to implement some parts, but the built-in auth module[1] already covers a lot of this. Best, Gergely [1] https://docs.djangoproject.