Send mail notifs with a plaintext part too

This commit is contained in:
David Baker 2016-04-29 13:56:21 +01:00
parent b2c04da8dc
commit 40d40e470d
5 changed files with 50 additions and 7 deletions

12
res/templates/notif.txt Normal file
View file

@ -0,0 +1,12 @@
{% for message in notif.messages %}
{{ message.sender_name }} ({{ message.ts|format_ts("%H:%M") }})
{% if message.msgtype == "m.text" %}
{{ message.body_text_plain }}
{% elif message.msgtype == "m.image" %}
{{ message.body_text_plain }}
{% elif message.msgtype == "m.file" %}
{{ message.body_text_plain }}
{% endif %}
{% endfor %}
View at {{ notif.link }}