mirror of https://github.com/zulip/zulip.git
22 lines
895 B
HTML
22 lines
895 B
HTML
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_uri }}/invitation_reminder.png"/>
|
|
{% 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 — 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.") }}
|
|
{% trans %}Contact us any time at <a href="mailto:{{ support_email }}">{{ support_email }}</a> if you run into trouble, have any feedback, or just want to chat!{% endtrans %}
|
|
</p>
|
|
{% endblock %}
|