{% extends "base.html" %} {% block title %}You're Invited to {{ workspace_name | default(app_name) }}{% endblock %} {% block content %}

You're Invited!

Hi{{ " " + user_name if user_name else "" }},

{{ inviter_name | default("A team member") }} has invited you to join {% if workspace_name %} {{ workspace_name }} on {{ app_name }}. {% else %} {{ app_name }}. {% endif %}

{% if role %}

You've been invited as: {{ role }}

{% endif %} {% if message %}

Message from {{ inviter_name | default("the inviter") }}:

{{ message }}

{% endif %}

Accept Invitation

Or copy and paste this link into your browser:
{{ invitation_url }}

This invitation will expire in {{ expires_in | default("7 days") }}.

{% if workspace_name %}

About {{ workspace_name }}

{% if workspace_description %}

{{ workspace_description }}

{% else %}

{{ workspace_name }} uses {{ app_name }} to collaborate and work together. Accept this invitation to join the team!

{% endif %}
{% endif %}

If you were not expecting this invitation or do not wish to join, you can safely ignore this email. The invitation will expire automatically.

{% endblock %}