Django-Verify-Email
Django-Verify-Email copied to clipboard
A two-step verification for new accounts by verifying email.
How to catch or check if sending email was successful in views?
When attempting to resend a verification email for a user that does not exist it just shows a blank page with "User Not Found" in the top left corner. I'm...
Issue is on this line: https://github.com/foo290/Django-Verify-Email/blob/95b653a260bc1f97149967e016bb46e816f9f3e2/verify_email/token_manager.py#L147 When you register using an unused email, everything works perfectly. The issue arises when you register again using the same email address, which is...
Leaving this unset was making it incompatible with any project that had set the DEFAULT_AUTO_FIELD django setting to anything else
Hi Templates and templates parameters should be internationalized using standard Django framework.
If a HEAD request is received, this needs to be ignored as otherwise the follow up GET request will not be properly processed as verify-email was already done (at the...
Moving from Django 5.0.8 to 5.1 triggers the following exception: ``` File "/home/olivi/devt/cousins-matter/members/views/views_registration.py", line 76, in post send_verification_email(request, form) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/olivi/miniconda3/envs/cousinsmatter/lib/python3.12/site-packages/verify_email/email_handler.py", line 98, in send_verification_email return _VerifyEmail().send_verification_link(request, form) ^^^^^^^^^^^^^^...
Modernized packaging using only build and github action
I don't know if this function is already fix and I did not understand to use this framework well so, in my case, I have modified the `send_verification_email` function in...