いつも大変お世話になっております。
表題について質問をさせてください。
allauthを用いて新規登録時にメールを送るように設定をしているのですが、
件名の先頭に[example.com]
が入ってしまいます。
[example.com] 【仮登録完了 | 〇〇】
これを除去したいです。
件名に使用しているテンプレートは以下になりますが、
ドメインが入る該当箇所が見当たりません。
account/以下はallauthのパッケージからまるっとコピペし
コピーしたものを修正するようにしています。
どなたか詳しい方がいらっしゃればご教授いただけますと幸いです。
環境
Django==4.0.1
django-allauth==0.47.0
ディレクトリ構造
. ├── manage.py └── templates └── account └── email ├── base_message.txt ├── email_confirmation_message.txt ├── email_confirmation_signup_message.txt ├── email_confirmation_signup_subject.txt ← 使用しているファイル ├── email_confirmation_subject.txt ← 使用しているファイル ├── password_reset_key_message.txt └── password_reset_key_subject.txt
email_confirmation_signup_subject.txt
{% include "account/email/email_confirmation_subject.txt" %}
email_confirmation_subject.txt
{% load i18n %} {% autoescape off %} {% blocktrans %}【仮登録完了 | 〇〇】{% endblocktrans %} {% endautoescape %}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。