[Answered ]-Is there a way in Django where the superadmin can create normal users and the users gets an email with the credentials that was created for them?

1👍

You can use create Admin actions that sends emails utilizing the send_email function when an account is created.

Admin Actions – https://docs.djangoproject.com/en/3.2/ref/contrib/admin/actions/

send_email – https://docs.djangoproject.com/en/4.1/topics/email/

👤Ceasar

Leave a comment