fleet/website/views/layouts/layout-email-newsletter.ejs
Rachael Shaw b7cc9db0e9
Website: Add updated logo for email templates (dark mode compatible) (#24676)
Updated the logo used in email templates to have a white outline around
the text (so it's readable in email clients using dark mode).
2024-12-11 14:49:59 -06:00

21 lines
2 KiB
Text
Vendored
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<% /* Default layout for email templates */ %>
<div style="background-color: #F9FAFC; width: 100%; font-family: 'Inter','Helvetica','arial', sans-serif; box-sizing: border-box; padding: 8px; margin: 0; word-break: break-word;">
<div style="border: 1px #e3e3e3 solid; background-color: #FFF ;color: #192147; font-size: 16px; box-sizing: border-box; width: 100%; max-width: 900px; margin-left: auto; margin-right: auto; padding: 24px;">
<div style="background: transparent; text-align: left;">
<a href="https://fleetdm.com"><img style="display: inline-block; width: 162px; height: 92px; width: auto;" alt="Logo" src="https://fleetdm.com/images/logo-email-162x92@2x.png"/></a>
</div>
<%- body %>
<hr style="margin-top: 40px; color: #E2E4EA;"/>
<div style="display: inline-flex; padding-top: 32px;">
<a href="https://fleetdm.com"><img style="height: 20px; width: 20px; margin-right: 24px;" alt="Fleet logo" src="<%= url.resolve(sails.config.custom.baseUrl,'/images/logo-fleet-20x20@2x.png')%>"></a>
<a href="https://twitter.com/fleetctl"><img style="height: 20px; width: 24px; margin-right: 24px;" alt="Follow Fleet on Twitter" src="<%= url.resolve(sails.config.custom.baseUrl,'images/logo-twitter-50x44@2x.png')%>"></a>
<a href="https://fleetdm.com/slack"><img style="height: 20px; width: 20px;" alt="Join the osquery Slack community" src="<%= url.resolve(sails.config.custom.baseUrl,'images/logo-slack-24x24@2x.png')%>"></a>
</div>
<div style="text-align: left; padding-top: 15px; font-size: 12px; color: #3E4771;">
<p>© <%= (new Date()).getFullYear() %> Fleet Device Management Inc. All trademarks, service marks, and company names are the property of their respective owners.</p>
</div>
<div>
<p style="font-size: 12px; color: #3E4771;">You received this email because youre subscribed to the Fleet newsletter. <a href="<%= url.resolve(sails.config.custom.baseUrl, '/unsubscribe-from-newsletter?emailAddress='+encodeURIComponent(emailAddress)) %>">Unsubscribe</a></p>
</div>
</div>
</div>