我正在使用内置 api 针对 Google 电子表格编写脚本以发送一些预订确认,目前如果有人填写了无效的电子邮件,我的脚本就会中断。我希望它只是将一些数据保存到尚未通知的客人列表中,然后继续循环预订。
这是我当前的代码(简化):
// The variables email, subject and msg are populated.
// I've tested that using Browser.msgBox(), and the correct column values are
// found and used
// The script breaks here, if an incorrect email address has been filled in
MailApp.sendEmail(email, subject, msg)
根据文档,课堂上仅有的两种方法MailApp
是发送电子邮件并检查每日配额——与检查有效电子邮件地址无关——所以我真的不知道课堂必须满足什么标准才能接受请求,并且因此无法编写验证例程。