migration_template.eml.j2 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. Date: {{ date|safe }}
  2. From: {{ from|safe }}
  3. To: {{ to|safe }}
  4. Message-ID: {{ messageid|safe }}
  5. Subject: We have changed the way your Matrix account and email address are associated
  6. MIME-Version: 1.0
  7. Content-Type: multipart/alternative;
  8. boundary="{{ multipart_boundary|safe }}"
  9. --{{ multipart_boundary|safe }}
  10. Content-Type: text/plain; charset=UTF-8
  11. Content-Disposition: inline
  12. Hello,
  13. We’ve recently improved how people discover your Matrix account.
  14. In the past, identity services took capitalisation into account when storing email
  15. addresses. This means Alice@example.com and alice@example.com would be considered to be
  16. two different addresses, and could be associated with different Matrix accounts. We’ve
  17. now updated this behaviour so anyone can find you, no matter how your email is capitalised.
  18. As part of this recent update, we've dissociated the Matrix account {{ mxid|safe }} from
  19. this e-mail address.
  20. No action is needed on your part. This doesn’t affect any passwords or password reset
  21. options on your account.
  22. About Matrix:
  23. Matrix.org is an open standard for interoperable, decentralised, real-time communication
  24. over IP, supporting group chat, file transfer, voice and video calling, integrations to
  25. other apps, bridges to other communication systems and much more. It can be used to power
  26. Instant Messaging, VoIP/WebRTC signalling, Internet of Things communication - or anywhere
  27. you need a standard HTTP API for publishing and subscribing to data whilst tracking the
  28. conversation history.
  29. Matrix defines the standard, and provides open source reference implementations of
  30. Matrix-compatible Servers, Clients, Client SDKs and Application Services to help you
  31. create new communication solutions or extend the capabilities and reach of existing ones.
  32. Thanks,
  33. Matrix
  34. --{{ multipart_boundary|safe }}
  35. Content-Type: text/html; charset=UTF-8
  36. Content-Disposition: inline
  37. <!doctype html>
  38. <html lang="en">
  39. <head>
  40. <style type="text/css">
  41. body {
  42. margin: 0px;
  43. }
  44. pre, code {
  45. word-break: break-word;
  46. white-space: pre-wrap;
  47. }
  48. #page {
  49. font-family: 'Open Sans', Helvetica, Arial, Sans-Serif;
  50. font-color: #454545;
  51. font-size: 12pt;
  52. width: 100%%;
  53. padding: 20px;
  54. }
  55. .low-contrast {
  56. color: #666666
  57. }
  58. #inner {
  59. width: 640px;
  60. }
  61. .header {
  62. width: 100%%;
  63. height: 87px;
  64. color: #454545;
  65. border-bottom: 4px solid #e5e5e5;
  66. }
  67. .logo {
  68. text-align: right;
  69. margin-left: 20px;
  70. }
  71. </style>
  72. </head>
  73. <body>
  74. <table id="page">
  75. <tr>
  76. <td> </td>
  77. <td id="inner">
  78. <table class="header">
  79. <tr>
  80. <td>
  81. </td>
  82. <td class="logo">
  83. <img src="http://matrix.org/img/matrix-120x51.png" width="120" height="51" alt="[matrix]"/>
  84. </td>
  85. </tr>
  86. </table>
  87. <p>Hello,</p>
  88. <p>
  89. We’ve recently improved how people discover your Matrix account.<br/>
  90. In the past, identity services took capitalisation into account when storing email
  91. addresses. This means Alice@example.com and alice@example.com would be considered to
  92. be two different addresses, and could be associated with different Matrix accounts.
  93. We’ve now updated this behaviour so anyone can find you, no matter how your email is
  94. capitalised. As part of this recent update, we've dissociated the Matrix account
  95. {{ mxid|safe }} from this e-mail address.<br/>
  96. No action is needed on your part. This doesn’t affect any passwords or password reset
  97. options on your account.
  98. </p>
  99. <br>
  100. <p>About Matrix:</p>
  101. <p>Matrix.org is an open standard for interoperable, decentralised, real-time communication
  102. over IP, supporting group chat, file transfer, voice and video calling, integrations to
  103. other apps, bridges to other communication systems and much more. It can be used to power
  104. Instant Messaging, VoIP/WebRTC signalling, Internet of Things communication - or anywhere
  105. you need a standard HTTP API for publishing and subscribing to data whilst tracking the
  106. conversation history.</p>
  107. <p>Matrix defines the standard, and provides open source reference implementations of
  108. Matrix-compatible Servers, Clients, Client SDKs and Application Services to help you
  109. create new communication solutions or extend the capabilities and reach of existing ones.</p>
  110. <p>Thanks,</p>
  111. <p>Matrix</p>
  112. </td>
  113. <td> </td>
  114. </tr>
  115. </table>
  116. </body>
  117. </html>
  118. --{{ multipart_boundary|safe }}--