我正在尝试创建一个 Google 应用程序脚本,该脚本能够根据电子表格中的值在特定时间安排邮件。将有多个日期时间单元格基于这些单元格进行触发。我曾尝试使用以编程方式添加触发器,ScriptApp.newTrigger()
但我没有得到该函数何时创建它应该运行。任何有关如何解决此问题的见解都会很棒。
编辑:当用户像这样提交表单时创建触发器。
function saveForm(form) {
const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Test');
const now = Utilities.formatDate(new Date(), "GMT+5:30", "yyyy-MM-dd");
const newRow = [now, form.cid, form.custName, form.custNumber, form.goodsType, form.tonnage, form.area, form.completeAddr, `${now} - ${form.time}`, form.comments];
sheet.appendRow(newRow);
const customDate = new Date(`${now}T${form.time}`);
ScriptApp.newTrigger('dispatchMail').timeBased().at(customDate).create();
return 'Data saved successfully';
}
现在发送邮件的功能
function dispatchMail() {
const now = Utilities.formatDate(new Date(), "GMT+5:30", "yyyy-MM-dd");
const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Test');
const data = sheet.getDataRange().getValues();
const normalized = {
'Mark': [],
'Jack': [],
'Chloe': [],
'Robin': [],
'Unassigned': []
};
for(let i=1; i<data.length; i++) {
normalized[data[i][10]] = normalized[data[i][10]].concat([data[i]]);
}
//start our mail dispatch here once we have aggregated the data
}
但现在的问题是不知道将邮件发送给谁。例如。用户在下午 2 点为 Mark 和在 4 点为 Jack 提交带有 Mail Trigger 的表单。现在在派发邮件功能中如何确定这封邮件是派发给马克还是杰克。我没有看到将参数传递给触发函数的方法。有什么办法解决这个问题吗?