Trigger password reset email in django without browser?
问题 I want to be able to send a password reset email using django.contrib.auth.views.password_reset but without using the browser - password_reset needs a populated form, is there a way I can create this programmatically and get the email sent? 回答1: from django.contrib.auth.forms import PasswordResetForm def reset_password(email, from_email, template='registration/password_reset_email.html'): """ Reset the password for all (active) users with given E-Mail adress """ form = PasswordResetForm({