Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将用于用户帐户激活的默认 django-userna 电子邮件替换为特定于网站的电子邮件。
我已经想到了一些方法来做到这一点,比如将整个安装的 django-userna 模块复制到一个项目特定的应用程序中,并替换存储在模块中的默认消息,但是,我所有的解决方案都感觉非常糟糕。
谢谢!
您不需要在项目目录中复制整个 django-userena 模块。您只需将“电子邮件”文件夹从 userena/templates/userena/ 复制到具有相同目录结构的项目模板目录中。
例如:you_project_dir/templates/userena/emails
之后,只需更改项目模板目录的 emails 文件夹中的 activation_email_message.txt 文件内容。