I am integrating django_paypal with my django_registration setup for which I have created a custom backend. I can’t seem to find in the code where it sends the activation email. Is this located in the backend?
I want to wait and send the activation email until after they have completed a paypal checkout and I receive the IPN notification.
The
RegistrationProfile.objects.create_inactive_usermanager method has asend_emailparameter, which defaults toTrue.You just need to set
send_email=Falsewhen you create a new user.