We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On colab/accounts/views.py there's: email = EmailAddressValidation.create(user.email, user)
location = reverse('archive_email_view', kwargs={'key': email.validation_key}) verification_url = request.build_absolute_uri(location) EmailAddressValidation.verify_email(email, verification_url)
email_addr, created = EmailAddress.objects.get_or_create( address=user.email) if created: email_addr.real_name = user.get_full_name()
email_addr.user = user email_addr.save()
Let's try to find a way to do email validation using plugin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On colab/accounts/views.py there's:
email = EmailAddressValidation.create(user.email, user)
location = reverse('archive_email_view',
kwargs={'key': email.validation_key})
verification_url = request.build_absolute_uri(location)
EmailAddressValidation.verify_email(email, verification_url)
Check if the user's email have been used previously
in the mainling lists to link the user to old messages
email_addr, created = EmailAddress.objects.get_or_create(
address=user.email)
if created:
email_addr.real_name = user.get_full_name()
email_addr.user = user
email_addr.save()
Let's try to find a way to do email validation using plugin
The text was updated successfully, but these errors were encountered: