Search code examples
djangodjango-modelsdjango-formsdjango-viewsdjango-profiles

Change user email in Django without using django-profiles


In my Django application I would like the user to be able to change the email address. I've seen solution of StackOverflow pointing people to django-profiles. Unfortunately I don't want to use a full fledged profile module to accomplish a tiny feat of changing the users email. Has anyone seen this implemented anywhere. The email address verification procedure by sending a confirmation email is a requisite in this scenario.

I've spent a great a deal of time trying to a find a solution that works but to no avail.

Cheers.


Solution

  • Seems that someone did write their own. It allows users to change their email addresses and sends confirmation emails.

    django-emailchange