Email Template Fonts

Hi, I’ve been trying to find where to modify the email templates default fonts, but have no idea where to do that. This is because I have a specific font with special characters I would like to use. Is this possible?

I’ve done it on PDF Templates via CSS, but don’t know if it also applies here.

Thanks in advance.

For E-Mail templates you habe to use inline styles like this:

<style>
body {
    font-family: "Your Font Name", sans-serif;
}
</style>
1 Like

Hi Kovah, thanks for your response. What file should I edit?

You have to place this at the very top of your email template.

Great. It worked perfectly.
Thank you so much.