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


{% block content %}
{% blocktrans trimmed with user=user.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 read this thread click the link below:
{% endblocktrans %}
{% absoluteurl thread.get_absolute_url %}
{% endblock content %}
