notif_mail.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <style type="text/css">
  5. {% include 'mail.css' without context %}
  6. {% include "mail-%s.css" % app_name ignore missing without context %}
  7. </style>
  8. </head>
  9. <body>
  10. <table id="page">
  11. <tr>
  12. <td> </td>
  13. <td id="inner">
  14. <table class="header">
  15. <tr>
  16. <td>
  17. <div class="salutation">Hi {{ user_display_name }},</div>
  18. <div class="summarytext">{{ summary_text }}</div>
  19. </td>
  20. <td class="logo">
  21. {% if app_name == "Vector" %}
  22. <img src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="[Vector]"/>
  23. {% else %}
  24. <img src="http://matrix.org/img/matrix-94px-white.png" width="94" height="40" alt="[matrix]"/>
  25. {% endif %}
  26. </td>
  27. </tr>
  28. </table>
  29. {% for room in rooms %}
  30. {% include 'room.html' with context %}
  31. {% endfor %}
  32. <div class="footer">
  33. <a href="{{ unsubscribe_link }}">Unsubscribe</a>
  34. </div>
  35. </td>
  36. <td> </td>
  37. </tr>
  38. </table>
  39. </body>
  40. </html>