mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-23 06:56:31 +01:00
Fix: use PAPERLESS_URL if set for pw reset emails (#5902)
This commit is contained in:
parent
86811d0733
commit
16f4552e0e
8 changed files with 136 additions and 43 deletions
|
|
@ -7,4 +7,5 @@ def settings(request):
|
|||
or django_settings.EMAIL_HOST_USER != "",
|
||||
"DISABLE_REGULAR_LOGIN": django_settings.DISABLE_REGULAR_LOGIN,
|
||||
"ACCOUNT_ALLOW_SIGNUPS": django_settings.ACCOUNT_ALLOW_SIGNUPS,
|
||||
"domain": getattr(django_settings, "PAPERLESS_URL", request.get_host()),
|
||||
}
|
||||
|
|
|
|||
7
src/documents/templates/account/email/base_message.txt
Normal file
7
src/documents/templates/account/email/base_message.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{% load i18n %}{% autoescape off %}{% blocktrans with site_name="Paperless-ngx" %}Hello from {{ site_name }}!{% endblocktrans %}
|
||||
|
||||
{% block content %}{% endblock content %}
|
||||
|
||||
{% blocktrans with site_name="Paperless-ngx" site_domain=settings.domain %}Thank you for using {{ site_name }}!
|
||||
{{ site_domain }}{% endblocktrans %}
|
||||
{% endautoescape %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue