{% if hasattr(recipient_user, 'invited_outside_moderator') %}
{% set app_url=settings.APP_URL %}
{% set app_name=settings.APP_SHORT_NAME %}
{% trans %}You have received this message because you've been invited to join {{ app_name }} as a moderator.{% endtrans %}
{% trans %}If you believe that this message was sent in an error, please email about it the forum administrator at {{ admin_email }}.{% endtrans %}
{% else %}
{% set url = recipient_user.get_subscriptions_url()|escape %}
{% if is_multilingual %}
{% trans %}To change frequency, language and content of these alerts, please visit your user profile.{% endtrans %}
{% else %}
{% trans %}To change frequency and content of these alerts, please visit your user profile.{% endtrans %}
{% endif %}
{% set unsubscribe_url = recipient_user.get_unsubscribe_url()|escape %}
{% trans %}To unsubscribe, visit this page{% endtrans %}
{% trans %}If you believe that this message was sent in an error, please email about it the forum administrator at {{ admin_email }}.{% endtrans %}
{% endif %}