Google Apps 脚本在下面的电子表格中运行,除了发送邀请外一切正常。使用sendInvites:true
在日历中创建的事件并添加了客人,但不发送电子邮件。我已经尝试过了,但没有使用var advancedArgs
相同的结果。
if (eventImported != EVENT_IMPORTED && title != "") { // Prevents importing duplicates
var cal = CalendarApp.openByName('calendarname');
var advancedArgs = {description: details, location: cust, guests:guestlist, sendInvites:true};
cal.createEvent("10% Complete-->"+title, startDate, endDate, {description: details, location: cust, guests:guestlist, sendInvites:true});
sheet.getRange(startcolumn + i, 9).setValue(EVENT_IMPORTED);