django apps for changing user email with verification?

若如初见. 提交于 2019-12-03 08:45:14

You can also try this app. (I wrote for the exact purpose)

https://github.com/un33k/django-emailmgr

It works well with django-registration as the email provided during the registration would be the primary email address and already verified.

the user can then add more email addresses and confirm each one. Once a new email is confirmed, then it can be promoted to the primary address. Then the old primary address can be deleted.

This way you ensure that users always have at least one verified email address associated with their profile.

If you want to see a live example, then you can do that on http://outsourcefactor.com by creating an account (django-registration), activating it, login, and look at the email tab under your account settings. Once you are done, you can delete the account.

Hope this helps.

You don't usually provide email verification to reset a password, since this is done at the signup stage. Django does however have the ability to send the reset password to the user in an email, after they have requested their password to be reset through a view.

Checkout the documentation here:

http://docs.djangoproject.com/en/dev/topics/auth/#django.contrib.auth.views.password_reset

EDIT:

I found and app that is able to reset the email of a user account, it does way more that just that (which may be a drawback) but could be useful:

http://code.google.com/p/django-profile/#Features

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!