[Django]-Django module not found error: email verification

4👍

Since the module is called "django_email_verification", you should add only it.

   'django-email-verification', # Remove this one
    'django_email_verification',

The interpreter iterates one setting after the other and continues or returns.

Leave a comment