digitalfabrik/integreat-cms

View on GitHub
integreat_cms/cms/templates/emails/password_reset_email.txt

Summary

Maintainability
Test Coverage
{% load i18n %}

{% autoescape off %}
    {% translate "Welcome" %} {{ user.full_user_name }},

    {% blocktranslate trimmed %}
        You are receiving this e-mail, because you have requested a password reset for your {{ BRANDING_TITLE }} account.
    {% endblocktranslate %}
    {% translate "Please use the following link to set a new password:" %}

    {{ protocol }}://{{ domain }}{% url 'public:password_reset_confirm' uidb64=uid token=token %}

    {% translate "If clicking on the link above does not work, please copy the URL and paste it into the address bar of your browser." %}

    {% translate "Your username, in case you've forgotten:" %} {{ user.get_username }}

    {% translate "Best regards" %},
    {% blocktranslate trimmed %}
        Your {{ BRANDING_TITLE }} team of {{ COMPANY }}
    {% endblocktranslate %}
{% endautoescape %}