{% extends "email_layout.html" %} {% block name %}{% endblock %} {% block content %}

Hi {{ recipient.first_name }} {{ recipient.last_name }},
{{ sender.first_name }} {{ sender.last_name }} shared the following articles with you:

{% for item in items %} {% include "email_item.html" %}
{% endfor %}

{{ message }}

{% endblock %}