mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-09-27 19:20:52 -04:00
Send mail notifs with a plaintext part too
This commit is contained in:
parent
b2c04da8dc
commit
40d40e470d
5 changed files with 50 additions and 7 deletions
12
res/templates/notif.txt
Normal file
12
res/templates/notif.txt
Normal 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue