{% extends 'emails/base.html.twig' %} {% block subject %} {%- autoescape false -%} {% if app.user %} {{ app.user }} has invited you to join Ledger {% else %} You've been invited to join Ledger {% endif %} {%- endautoescape -%} {% endblock %} {% block body_text %} {% autoescape false %} Welcome to team {{ workspace }}! {{ workspace }} uses Ledger to manage their projects, discussions, and tasks{% if app.user %}, and {{ app.user }} wants you on their team{% endif %}. As an invited member, Ledger is free to use. Paste the following link into your browser: {{ invitationUrl }} Thanks, Your friends at Ledger {% endautoescape %} {% endblock %} {% block body_html_content %} {% import 'emails/macros.html.twig' as EUI %} {{ EUI.displayAvatarText( appScheme ~ '://' ~ appHost ~ asset('images/ledger-icon.png'), 'Welcome to team ' ~ workspace ~ '!' ) }}

{{ workspace }} uses Ledger to manage their projects, discussions, and tasks{% if app.user %}, and {{ app.user }} wants you on their team{% endif %}. As an invited member, Ledger is free to use.

{% if message is not empty %}
{{ EUI.displayCard( null, app.user, app.user|default({name: 'Unknown User'}).name ~ ' added a comment', EUI.displayCommentBody({ body: message|trim }) ) }}
{% endif %}

Accept Invitation

{% endblock %}