summary refs log tree commit diff
path: root/res/templates/notif_mail.html
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@arasphere.net>2016-05-17 10:43:24 +0100
committerMatthew Hodgson <matthew@arasphere.net>2016-05-17 10:43:24 +0100
commit43e1e0489c956e43099e7f0daf8392396b0fb3dd (patch)
tree0f3b91362bab27f3fd2b9e416e6b409563f9d08d /res/templates/notif_mail.html
parentMerge pull request #789 from matrix-org/markjh/member_cleanup (diff)
parenttweak text (diff)
downloadsynapse-43e1e0489c956e43099e7f0daf8392396b0fb3dd.tar.xz
Merge pull request #786 from matrix-org/matthew/email_notifs_tuning
tune email notifs, fix CSS a bit, and add debugging details
Diffstat (limited to 'res/templates/notif_mail.html')
-rw-r--r--res/templates/notif_mail.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/res/templates/notif_mail.html b/res/templates/notif_mail.html
index 42560fdfd5..dc13398df1 100644
--- a/res/templates/notif_mail.html
+++ b/res/templates/notif_mail.html
@@ -30,6 +30,17 @@
                         {% include 'room.html' with context %}
                     {% endfor %}
                     <div class="footer">
+                        <small>
+                            Sending email at {{ reason.now|format_ts("%c") }} due to activity in room '{{ reason.room_name }}' because:<br/>
+                            1. An event was received at {{ reason.received_at|format_ts("%c") }}
+                            which is more than {{ "%.1f"|format(reason.delay_before_mail_ms / (60*1000)) }} (delay_before_mail_ms) mins ago.<br/>
+                            {% if reason.last_sent_ts %}
+                                2. The last time we sent a mail for this room was {{ reason.last_sent_ts|format_ts("%c") }},
+                                which is more than {{ "%.1f"|format(reason.throttle_ms / (60*1000)) }} (current throttle_ms) mins ago.
+                            {% else %}
+                                2. We can't remember the last time we sent a mail for this room.
+                            {% endif %}
+                        </small>
                         <a href="{{ unsubscribe_link }}">Unsubscribe</a>
                     </div>
                 </td>