我正在使用应用程序django-userena来管理用户帐户。我有它的工作,可以让用户注册,然后他们会收到一封电子邮件来验证他们的帐户。但是,我很难确定我们在哪里更改基本网址,以便电子邮件不使用example.com
. 例如,电子邮件当前说:
感谢您在 example.com 上注册。
要激活您的帐户,您应该点击以下链接:
http://example.com/accounts/activate/14bd7b230525224b6bfd71ca4efd531d4694f857/
感谢您使用我们的网站!
此致,example.com
我了解这是从以下模板生成的:
{% load i18n %}{% autoescape off %}{% load url from future %}
{% if not without_usernames %}{% blocktrans with user.username as username %}Dear {{ username }},{% endblocktrans %}
{% endif %}
{% blocktrans with site.name as site %}Thank you for signing up at {{ site }}.{% endblocktrans %}
{% trans "To activate your account you should click on the link below:" %}
{{ protocol }}://{{ site.domain }}{% url 'userena_activate' activation_key %}
{% trans "Thanks for using our site!" %}
{% trans "Sincerely" %},
{{ site.name }}
{% endautoescape %}
但是,我无法弄清楚在哪里example.com
设置 - 我已经尝试搜索并查看了每个包含此文件的文件,但我无法找到我应该(或者如果我应该)在某处设置 url。