{% extends "misago/emails/base.html" %}
{% load i18n misago_capture %}
{% block content %}
{% capture trimmed as thread_link %}
{{ thread }}
{% endcapture %}
{% blocktrans trimmed with user=recipient poster=user thread=thread_link|safe %}
{{ user }}, you are receiving this message because {{ poster }} has replied to the thread {{ thread }} that you are subscribed to.
{% endblocktrans %}
{% trans "To read this reply, click the below link:" %}
{% trans "Go to reply" %}
{% endblock content %}