Newsletter
For the current list of registered emails, see Subscribers.
The following are emails records scheduled to be sent at 13:00 UTC on the day after their publication date.
-
{% regroup notificationrecord_list_unsent by post as post_list %}
{% for post, notificationrecord_list in post_list %}
-
{{ post.title }}
{% if notificationrecord_list.0.scheduled_at %}
scheduled for
to:
{% else %}
to be cancelled as unpublished:
{% endif %}
{% for nr in notificationrecord_list %}
{% if nr.is_canceled %}{{ nr.notification.email }}{% else %} {{ nr.notification.email }} | cancel {% endif %} {% endfor %}
{% empty %}
- No records {% endfor %}
NB. Newsletter emails are delivered in text format. Any urls and images will be included as links.
The following are emails records that have been sent in the past.
-
{% regroup notificationrecord_list_sent by post as post_list %}
{% for post, notificationrecord_list in post_list %}
-
{{ post.title }}
sent at
to:
{% for nr in notificationrecord_list %}
{{ nr.notification.email }} {% endfor %}
{% empty %}
- No records {% endfor %}