如何在 Django 中更改发件人电子邮件名称
How to change sender email name in Django
我需要用 'Team Example' 作为发件人从 Django 发送一封电子邮件,默认情况下,使用 no-reply@example.com。
我已经尝试过其他 Whosebug 问题中提到的这个
DEFAULT_FROM_EMAIL = 'Team Example <noreply@example.com>'
在 settings.py 但它不起作用。
对于django-oscar, you need to use the OSCAR_FROM_MAIL
[readthedocs.io]对于:
The email address used as the sender for all communication events and emails handled by Oscar.
因此,如果 Oscar 与您的用户交流,将使用它。
因此您可以添加一个设置:
<b>OSCAR_FROM_EMAIL</b> = 'Team Blackweb <noreply@example.com>'
我需要用 'Team Example' 作为发件人从 Django 发送一封电子邮件,默认情况下,使用 no-reply@example.com。
我已经尝试过其他 Whosebug 问题中提到的这个
DEFAULT_FROM_EMAIL = 'Team Example <noreply@example.com>'
在 settings.py 但它不起作用。
对于django-oscar, you need to use the OSCAR_FROM_MAIL
[readthedocs.io]对于:
The email address used as the sender for all communication events and emails handled by Oscar.
因此,如果 Oscar 与您的用户交流,将使用它。
因此您可以添加一个设置:
<b>OSCAR_FROM_EMAIL</b> = 'Team Blackweb <noreply@example.com>'