1
0
mirror of https://github.com/bitwarden/server synced 2026-02-14 15:33:35 +00:00

feat(emergency-access) [PM-29584]: Add email template.

This commit is contained in:
enmande
2025-12-30 17:19:30 -05:00
parent 34b4dc3985
commit f68e2797b8

View File

@@ -0,0 +1,31 @@
<mjml>
<mj-head>
<mj-include path="../../components/head.mjml" />
</mj-head>
<mj-body css-class="border-fix">
<!-- Blue Header Section -->
<mj-wrapper css-class="border-fix" padding="20px 20px 0px 20px">
<mj-bw-hero title=""/>
</mj-wrapper>
<!-- Main Content -->
<mj-wrapper padding="0px 20px 0px 20px">
<mj-section background-color="#fff" padding="0px 10px 0px 10px">
<mj-column>
<mj-text font-size="16px" line-height="24px" padding="10px 15px">
The following emergency contacts have been removed from your account:
<ul>
{{#each RemovedGranteeNames}}
<li>{{this}}</li>
{{/each}}
</ul>
You can manage your emergency contacts in the <a href="{{WebVaultUrl}}">web app</a>.
</mj-text>
</mj-column>
</mj-section>
</mj-wrapper>
<!-- Footer -->
<mj-include path="../../components/footer.mjml" />
</mj-body>
</mjml>