{% extends "misago/emails/base.html" %}
{% load i18n misago_capture %}
{% block content %}
{% capture trimmed as thread_title %}
{{ thread.title }}
{% endcapture %}
{% blocktrans trimmed with user=recipient.username sender=sender.username thread=thread_title %}
{{ user }}, you are receiving this message because {{ sender }} has invited you to participate in private thread {{ thread }}.
{% endblocktrans %}
{% blocktrans trimmed %}
To go to this thread click the link below:
{% endblocktrans %}
{{ thread.title }}
{% endblock content %}