Files
speckle-server/packages/server/assets/emails/templates/speckleBasicEmailTemplate.mjml.ejs
T
andrewwallacespeckle d1f040051d refactor(server): Update system emails (#4074)
* Update email verification. And workspace invite emails.

* Footer logos

* Workspace requests

* Trial

* Misc emails

* New logo

* Updates to font, spacing and footer

* Remove space

* Update invite emails

* Correct classes
2025-03-07 15:30:03 +00:00

42 lines
1.1 KiB
Plaintext

<mjml>
<mj-include path="./components/head.mjml" />
<mj-body>
<!-- Header -->
<mj-include path="./components/headerLogo.mjml" />
<!-- Body -->
<mj-section>
<mj-column><%- params.body.mjml -%></mj-column>
</mj-section>
<% if (params.cta) { %>
<mj-include path="./components/ctaButton.mjml" />
<% } %>
<!-- Body - End -->
<% if (params.bodyEnd?.mjml?.length) { %>
<mj-section>
<mj-column><%- params.bodyEnd?.mjml -%></mj-column>
</mj-section>
<% } %> <% if (params.user?.email) { %>
<mj-section padding="0px">
<mj-column>
<mj-text font-size="12px" color="#626263" align="center" padding="0px">
<p>
If you don't want to receive these emails, update your preferences
<a
href="<%- params.serverInfo.canonicalUrl -%>/profile/<%- params.user.id -%>"
>
here
</a>
.
</p>
</mj-text>
</mj-column>
</mj-section>
<% } %>
<mj-include path="./components/footer.mjml" />
</mj-body>
</mjml>