{% extends "email_layout.txt" %}
{% 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.txt' %}

---
{% endfor %}

{{ message }}

{% endblock %}