zulip/templates/zerver/emails/invitation.source.html

30 lines
872 B
HTML
Raw Normal View History

{% extends "zerver/emails/compiled/email_base_default.html" %}
{% block illustration %}
<img src="{{ email_images_base_uri }}/registration_confirmation.png"/>
{% endblock %}
{% block content %}
<p>Hi there,
</p>
<p>
{{ referrer.full_name }} ({{ referrer.email }}) wants you to join
them on Zulip &mdash; the team communication tool designed for
productivity.
</p>
{% if custom_body %}
<p>Message from {{ referrer.full_name }}: {{ custom_body }}</p>
{% endif %}
<p>
2017-07-03 11:54:13 +02:00
To get started, please click here:
<a class="button" href="{{ activate_url }}">Complete registration</a>
</p>
<p>
Feel free to give us a shout at <a href="mailto:{{ support_email }}">{{ support_email }}</a>, if you have any questions.
</p>
<p>
Cheers,<br />
Team Zulip
</p>
{% endblock %}