Sending Emails When Adding a new User using Django admin panel

I want to send a verification email when adding a new user using the Django admin panel to the added email address and when the user is verified I want to send another email with the user’s credentials.

You could override the response_add method to send an email after the user has been added.

This is a significant security anti-pattern. In all cases, it is better to allow the user to set their own password.