Custom Font in invitation email | Experience Community
Skip to main content
Question

Custom Font in invitation email

  • March 30, 2026
  • 2 replies
  • 18 views

Forum|alt.badge.img

Hello! Can someone guide me in how I upload custom font, specific by my organisation, in to the survey emails? 

2 replies

kgillis
Level 6 ●●●●●●
Forum|alt.badge.img+31
  • Level 6 ●●●●●●
  • March 31, 2026

I would be a little weary on this as not all inboxes allow the receipt of custom fonts - you’ll need to also set up a fallback font if it’s not supported. But yes, this can be done. First you’ll need to import in your  custom font suing google fonts or something similar, then you’ll go to the html editing section on the email invite and replace the code with your font

 

<style>
  @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  body, p {
    font-family: 'Roboto', Arial, sans-serif !important;
  }
</style>
 


Forum|alt.badge.img
  • Author
  • April 1, 2026

That is massively helpful thank you!