我在模板文件夹中添加以下子文件夹和文件以覆盖电子邮件(在文档https://github.com/pennersr/django-allauth#sending-e-mail)a之后:
templates/
account/
email/
email_confirmation_message.html
email_confirmation_message.txt
email_confirmation_subject.txt
覆盖完全适用于* .txt版本的电子邮件(意思是,我认为我有正确的文件夹结构)但我的问题是HTML版本不是由django_allauth发送的。
答案 0 :(得分:17)
对于那些面临同样问题的人:
当涉及到电子邮件确认时,django_allauth会检查是否是新用户并相应地查找模板:
所以你必须覆盖:
email_confirmation_message.txt
email_confirmation_signup_message.txt
并添加HTML版本
email_confirmation_message.html
email_confirmation_signup_message.html