以下代码曾经可以使用(〜2018年3月),但不再有效。我是在做错什么,还是有人知道这有变化吗?
function sendICAL(){
var icalURL = "https://calendar.google.com/calendar/ical/usa__en%40holiday.calendar.google.com/public/basic.ics";
var icalBlob = UrlFetchApp.fetch(icalURL).getBlob();
GmailApp.sendEmail("derekantrican@gmail.com", "ICAL file", "", {attachments: [icalBlob]});
}
答案 0 :(得分:1)
使用MailApp代替使用GmailApp。他们改变了。
as=script