I’m struggeling with the integration of a custom font in the e-mail templates.
The e-mail clients (mostly Outlook for Microsoft 365, outlook web app) is not using the custom font.
Maybe somebody already tried it successfully?
My current e-mail template looks like:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<style type="text/css">
@font-face {
font-family: MyCustomFont;
font-style: normal;
font-display:swap;
font-weight: 300;
src: url(https://.../MyCustomFont.woff2) format("woff2"),
url(https://.../MyCustomFont.woff) format("woff");
}
</style>
</head>
<body style="background: #F3F3F3;font-family:MyCustomFont,helvetica,arial,sans-serif;">
<p style="font-size: 18px;">Hello,</p>
<p style="font-size: 18px;">We would like to warmly welcome you to your Auth0 account and thank you for the registration. Your account is now fully set up and ready for use.</p>
</body>
</html>