I am trying to work with existing Google Script, and I'd like to change the color of some words within a sentence in an email the script generates. In the following, I would like "behind pace" to be red. I've tried font tags, but they don't work. Suggestions?
if (firstItem) {
body = "This is an email to inform you of course progress.\n\n" + studentName + " is <font color="red"> behind pace </font> in the following subjects:\n";
firstItem = false;
} else {
body += "\n";
}