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);