python – Django-registration – 一些激活

前端之家收集整理的这篇文章主要介绍了python – Django-registration – 一些激活前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何强制向用户重新发送激活电子邮件?例如.当他意外删除邮件时,他点击我网站上的链接,django将向他发送新的激活电子邮件.

最佳答案
这样做有一个admin action.从django-registration docs开始:

How do I re-send an activation email?

Assuming you’re using the default backend,a custom admin action is provided for this; in the admin for the RegistrationProfile model,simply click the checkBox for the user(s) you’d like to re-send the email for,then select the “Re-send activation emails” action.

没有内置的自动方式(django-registration应该如何确定随机访问者是3天前填写注册表并删除了他的激活邮件的人?).

原文链接:https://www.f2er.com/python/439113.html

猜你在找的Python相关文章