Skip to main content

Hello!


Is there a way to set or change the font of a value in an email?

I tried:

In a quick test, I was able to get that to change the color of an inserted item. To change the typeface, you’d use the font-family property. I was able to get this to work as well in a quick test:



Here’s a more in-depth guide on using the font-family property:


https://www.w3schools.com/Css/css_font.asp


In a quick test, I was able to get that to change the color of an inserted item. To change the typeface, you’d use the font-family property. I was able to get this to work as well in a quick test:



Here’s a more in-depth guide on using the font-family property:


https://www.w3schools.com/Css/css_font.asp


Thnak you again for the quick reply!

I tried this, but it doesn’t work for me.




Thnak you again for the quick reply!

I tried this, but it doesn’t work for me.




Very strange. I was able to get this working in both email action types (Airtable & Gmail), and the test showed the result properly. Maybe try building a new automation from scratch? Sometimes automations wig out for no clear reason, and a fresh automation will work where the other one won’t.


This worked for me:

<!DOCTYPE html>

<h1 style="font-family:Poppins, Helvetica, sans-serif;"> Insert your heading here</h1> <p> This is the paragraph for other text.</p>

I recommend using these CSS Web Safe Fonts: https://www.w3schools.com/cssref/css_websafe_fonts.php. I wanted to use Poppins font and it seems to only work in Outlook desktop app, so that is why I have the Helvetica as a back up font. For different colors you can just use the "color:x" 


Reply