我正在嘗試使用現有Google腳本,並且想要更改腳本生成的電子郵件中某個句子中某些單詞的顏色。在下面,我想「落後」變成紅色。我試過字體標籤,但它們不起作用。建議?在行中間更改GMail文本顏色
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";
}
你盤''標籤?' 單詞'? – Identity1
顯示所有相關的代碼並顯示您嘗試過並且沒有工作的內容 –
上面的編輯版本我嘗試用標記替換字體標記並且無法運行 – BPL