{% extends 'emails/base.html.twig' %} {% block subject %} {%- autoescape false -%} Reminder: You've been invited to join Ledger {%- endautoescape -%} {% endblock %} {% block body_text %} {% autoescape false %} {% if invitee.email %} This is a friendly reminder to join {{ workspace }} on Ledger. Creating an account is totally free and takes less than a minute to get going. {% else %} This is a friendly reminder to join {{ workspace }} on Ledger. As an invited member, Ledger is free to use. {% endif %} 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'), 'Reminder to join team ' ~ workspace ~ '!' ) }} {% if invitee.email %}

This is a friendly reminder to join {{ workspace }} on Ledger. Creating an account is totally free and takes less than a minute to get going.

{% else %}

This is a friendly reminder to join {{ workspace }} on Ledger. As an invited member, Ledger is free to use.

{% endif %}

Accept Invitation

{% endblock %}