【发布时间】:2014-07-20 18:44:21
【问题描述】:
我在谷歌电子表格中使用脚本编辑器来发送自动回复电子邮件。但是,我收到了提示无效电子邮件的失败摘要通知:未定义(在 Mail.App 行上)。我不知道这个错误是怎么来的。请帮忙。非常感谢。
function myFunction(e) {
var Nickname = e.values [2];
var email = e.values [10];
var subject = "Form Submitted"
var message =
"Thank you, " = + Nickname + ". Your response is accepted. You may want to check our website @ iydsphilippines.weebly.com for registration payment details. Thanks and we hope to see you soon!";
MailApp.sendEmail(email, subject, message);
}
Here is a link 复制到我的电子表格。
【问题讨论】:
标签: email google-apps-script google-sheets google-forms