diff options
author | David Baker <dave@matrix.org> | 2016-04-25 18:27:04 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-04-25 18:27:04 +0100 |
commit | 7b4715bad704231b51c6d0462cfd19ed32df5e0b (patch) | |
tree | 3421315cc11a46b64a757514a638cff2ebb8127a /res | |
parent | Typo (diff) | |
download | synapse-7b4715bad704231b51c6d0462cfd19ed32df5e0b.tar.xz |
More variable calculation for email notifs
Include name of the person we're sending to and add summary text at the top giving an overview of what's happened.
Diffstat (limited to 'res')
-rw-r--r-- | res/templates/notif.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/res/templates/notif.html b/res/templates/notif.html index 648ff034b3..aee52ec8c9 100644 --- a/res/templates/notif.html +++ b/res/templates/notif.html @@ -1,7 +1,8 @@ <!doctype html> <html lang="en"> <body> - <h1>{{ summaryText }}</h1> + <div className="salutation">Hi {{ user_display_name }},</div> + <div className="summarytext">{{ summary_text }}</div> <div class="content"> {% for room in rooms %} {% include 'room.html' with context %} |