summary refs log tree commit diff
path: root/synapse/res/templates/notif_mail.html (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix html templates to load images only on HTTPS (#14625)Ashish Kumar2022-12-081-3/+3
| | | | | | | | | | This PR changes http-based image URLs to be https in html templates. This impacts the Synapse SSO error page, where browsers report mixed media content warnings. Also, https://matrix.org/img/vector-logo-email.png is currently broken but the URL has been updated to be https anyway. Signed-off-by: Ashish Kumar <ashfame@users.noreply.github.com>
* Fix HTML templates missing correct HTML tags (#14448)Erik Johnston2022-11-161-0/+2
|
* Improve aesthetics and reusability of HTML templates. (#13652)Germain2022-10-211-59/+57
| | | | | | | Use a base template to create a cohesive feel across the HTML templates provided by Synapse. Adds basic styling to the base template for a more user-friendly look and feel.
* Add viewport directive to HTML templates to optimise for mobile (#13493)Germain2022-08-111-0/+2
|
* Include a simple message in email notifications that include encrypted ↵Patrick Cloke2020-10-191-13/+13
| | | | content (#8545)
* Element CSS and logo in email templates (#7919)Jason Robinson2020-07-211-0/+2
| | | | | Use Element CSS and logo in notification emails when app name is Element. Signed-off-by: Jason Robinson <jasonr@matrix.org>
* Use static locations for Riot iconsTravis Ralston2019-03-011-1/+1
| | | See https://github.com/vector-im/riot-web/issues/9009
* Ship the email templates as package_dataRichard van der Hoff2018-10-171-0/+55
move the example email templates into the synapse package so that they can be used as package data, which should mean that all of the packaging mechanisms (pip, docker, debian, arch, etc) should now come with the example templates. In order to grandfather in people who relied on the templates being in the old place, check for that situation and fall back to using the defaults if the templates directory does not exist.