forked from MirrorHub/synapse
fa12209c1b
Add public facing base url to the server so synapse knows what URL to use when converting mxc to http urls for use in emails
15 lines
462 B
HTML
15 lines
462 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<body>
|
|
<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 %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="footer">
|
|
<a href="{{ unsubscribe_link }}">Unsubscribe</a>
|
|
</div>
|
|
</body>
|
|
</html>
|