3

Do you know, how to change the font size of emails that are written in r through blastula, I know how to change the font family but not the size.

Example:

email <- compose_email(font_family = "Montserrat", body = md(c( "Team, How would you plot the relationship between these 3 variables?", plot_email)))

Johan
  • 109
  • 5

1 Answers1

0

As blastula makes use R markdown you can make use of markdown way to change the font size with HTML font tags <font size = ''></font>. It is covered in this question. Taking your example:

email <- compose_email(
  font_family = "Montserrat", 
  body = md(c( "<font size='6'> Team, How would you plot the relationship between these 3 variables?</font>", plot_email)))