Created
August 25, 2020 06:13
-
-
Save jramnai/615691cdb443a2f908a5571a552b3d63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib.auth.models import User | |
from student.views import compose_and_send_activation_email | |
user = User.objects.get(email='[email protected]') | |
compose_and_send_activation_email(user, user.profile) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment