简体   繁体   中英

“[Site]” in email subject line when django-allauth sends email

I'm using django-allauth for user authentication in my Django project. Right now account emails are being sent through MailGun.

When a password reset or confirm account email comes through, [Site] is printed in the subject line of the email as such:

[Site] Password Reset E-mail

How can I remove this?

Thanks.

Set ACCOUNT_EMAIL_SUBJECT_PREFIX = '' in your settings. All-auth has a ton of custom settings... I have learned that anytime something is configured not to my liking, there's probably a setting available as opposed to having to override their code. https://django-allauth.readthedocs.io/en/latest/configuration.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM