{% extends "misago/emails/base.txt" %}
{% load i18n misago_absoluteurl %}


{% block content %}
{% blocktrans trimmed with user=user sender=sender thread=thread %}
{{ user }}, you are receiving this message because {{ sender }} has replied to the thread "{{ thread }}" that you are subscribed to.
{% endblocktrans %}

{% trans "To read this reply, click the below link:" %}
{% absoluteurl post.get_absolute_url %}
{% endblock content %}
