zulip/templates/zerver/emails/invitation_reminder.source....

25 lines
914 B
HTML
Raw Normal View History

{% extends "zerver/emails/compiled/email_base_default.html" %}
{% block illustration %}
2019-04-19 21:23:58 +02:00
<img src="{{ email_images_base_uri }}/invitation_reminder.png" alt="{{ _('Mailbox with envelope') }}"/>
{% endblock %}
{% block content %}
<p>{{ _("Hi again,") }}</p>
<p>{% trans %}This is a friendly reminder that {{ referrer_name }} (<a href="mailto:{{ referrer_email }}">{{ referrer_email }}</a>) wants you to join them on Zulip &mdash; the team communication tool designed for productivity.{% endtrans %}</p>
<p>
{{ _("To get started, click the button below.") }}
<a class="button" href="{{ activate_url }}">{{ _("Complete registration") }}</a>
</p>
<p>
{{ _("This is the last reminder you'll receive for this invitation.") }}
</p>
<p>
{% trans %}This invitation expires in two days. If the invitation expires, you'll need to ask {{ referrer_name }} for another one.{% endtrans %}
</p>
{% endblock %}