[Django]-What is the use of email in Django Superuser?

5👍

A superuser is just an instance of a user with is_superuser=True, which gives you all permissions regardless. There’s an email field on Django’s default User model, but you can leave the field blank if you want.

Note that the email addresses for admin users may be used in error reporting when the list of ADMINS is configured in settings.

👤wim

Leave a comment