{% extends 'emails/base.html.twig' %} {% block subject %} {%- autoescape false -%} Your daily to-do's for {{ 'now'|date(user.dateFormat) }}! {%- endautoescape -%} {% endblock %} {% block body_text %} {% autoescape false %} Here's what's due today! {% for item in items %} - {{ (item is instanceOf('\\App\\Entity\\Workspace\\Stream\\Event') ? 'email.daily_todo_event' : 'email.daily_todo_task')|trans()|html2text }} {{ format_date_range_label(item.startDate, item.endDate, item.allDay, user.dateFormat, user.timeFormat) }} {{ item }} {% endfor %} 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'), 'Here\'s what\'s due today!' ) }}

Go to Ledger

{% endblock %}