如何延迟在django_registration中发送激活邮件?

时间:2011-11-18 17:07:26

标签: django backend django-registration django-paypal

我正在将django_paypal与我创建自定义后端的django_registration设置集成。我似乎无法在代码中找到它发送激活电子邮件。它位于后端吗?

我想等待并发送激活电子邮件,直到他们完成PayPal结账并收到IPN通知为止。

1 个答案:

答案 0 :(得分:0)

RegistrationProfile.objects.create_inactive_user经理方法有一个send_email参数,默认为True

您只需在创建新用户时设置send_email=False

new_user = RegistrationProfile.objects.create_inactive_user(username, email,
                                                            password, site,
                                                            send_email=False)