在pinax项目中,如何配置变量(如{current_site}}、{email_url}}、{activate_url}}等)以适应django用户帐户、pinax应用程序?
例如,当我配置我的设置.py并设置时
ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = True
现在,当我创建一个新用户时,我会收到消息
Confirm your email address
We have sent you an email to e@e.com for verification.
Follow the link provided to finalize the signup process.
If you do not receive it within a few minutes, contact us
at support@example.com
所以我的问题是,这些Django变量在哪里?我如何按顺序更改它们support@example.com更改所需的电子邮件地址?
添加您的设置.py
THEME_CONTACT_EMAIL = 'desired@email.com'