Customeize the font on invite email | XM Community
Skip to main content

Hi :)

What are the chances I can use a saved font in my library not only for surveys but also for communication like emails or invite emails?

Thanks a lot!

 

@Shashi  you probably know ?

Adding a custom font in an email can be tricky because not all email clients support the use of custom fonts. However, many email clients like Apple Mail, iOS Mail, and some versions of Outlook do support web fonts. Gmail and many other web-based clients, however, may not support custom fonts directly.

You can include a custom font by linking to a web font service like Google Fonts or importing your own font via @font-face. You should always include fallback fonts in case the custom font isn't supported.

<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Fallback font: Arial if Roboto isn't supported */
body, p {
font-family: 'Roboto', Arial, sans-serif;
}
</style>

Font face example:

<style>
@font-face {
font-family: 'MyCustomFont';
src: url('QUALTRICS FONT FILE URL GOES HERE');
font-weight: normal;
font-style: normal;
}

/* Fallback to Helvetica if custom font isn't supported */
body, p {
font-family: 'MyCustomFont', Helvetica, sans-serif;
}
</style>

 


@Shashi  Thank you for your great answer. I was away and didn’t had the chance to come back and thank you! 😍


Leave a Reply