使用Apps脚本的Html Mail

时间:2013-07-15 08:35:30

标签: google-apps-script gmail

是否可以创建&使用GAS发送Html邮件?当前的MailApp类目前只允许使用字符串明文体,并且在那里编写的任何html代码都会显示html源而不是呈现内容。

1 个答案:

答案 0 :(得分:3)

documentation非常明确,您可以将html body定义为可选参数,例如:

function test(){
  MailApp.sendEmail('testEmail@xx.com', 'subject :test HTML body','text Body', {htmlBody:"This is a html body test<br><br> in html format"})
}