我在另一个电子表格中使用了一个脚本,只要有人提交表单就会通过电子邮件发送给我。它通过电子邮件向我发送了一些重要问题的答案,以及查看电子表格中完整响应的链接。
这是我的原始代码:
function Outreach_FormMailer(e) {
var recipient = "email@gmail.com";
var timestamp = e.values[0];
var name = e.values[1];
var subject = e.values[1]+" completed a Report for "+e.values[3]
var dates = e.values[7];
var goalMet = e.values[9]
var goalFocus = e.values[10]
var hyperlink = "myawesomelink.com"
htmlBody = name+' just completed the O/R Report for these dates: '+dates+'<br><br>Form completed on: '+timestamp+'<br>Was the goal met? '+goalMet+'<br>What was the goal focus? '+goalFocus+
'<br><br>View the Form:<a href="'+hyperlink+'">Click Here</a>';
MailApp.sendEmail(收件人,主题,htmlBody,{htmlBody:htmlBody}); }
我想将此代码用于具有不同问题的新表单,因此我编辑了代码以对应正确的qeustions。
这是不起作用的代码:
function Team_ApplicationMailer(e) {
var recipient = "email@gmail.com";
var timestamp = e.values[0];
var name = e.values[3];
var subject = e.values[1]+' filled out the Teams Application Form!' ;
var startdate = e.values[12];
var enddate = e.values[13]
var Focus = e.values[19]
var hyperlink="myawesomelink.com"
htmlBody = name+' from: '+e.values[1]+'just completed the Teams Application Form for these dates: '+startdate+' to '+enddate+'<br><br>Form completed on: '+timestamp+'<br><br>View the Form:<a href="'+hyperlink+'">Click Here</a>';
MailApp.sendEmail(recipient, subject, htmlBody, {htmlBody:htmlBody});
}
我已经完成了几个测试电子邮件,出于某种原因,这个版本的脚本无法正常工作。我将此脚本添加到已在电子表格上有响应的表单中。这会有所作为吗?真的不确定在将代码转移到不同的电子表格时我做错了什么。
答案 0 :(得分:0)
感谢评论家伙。我实际上意识到上面的代码确实有效。我忘记了我在Gmail中设置了一个过滤器,该过滤器将自动回复电子邮件发送到我没有看到的文件夹而不是收件箱。代码没问题,我忘了检查电子邮件发送到的正确位置。