Google Appscript发送重复的电子邮件

时间:2019-12-05 14:36:58

标签: google-apps-script

这是脚本中的代码:

sendSubmissionEmail();

function sendSubmissionEmail() {

  var consultantEmail = 'example@staffingprojects.co.za';

  {
   var subject = 'New Submission Notification - Example' ;
   var message = 'Hello, a new form has been submitted!';
  }
    // Send the email
  MailApp.sendEmail(consultantEmail, subject, message);
}

设置为从表单上的提交触发,但每次都会发送重复的邮件。

1 个答案:

答案 0 :(得分:0)

我尝试了您的代码,并遇到了相同的问题,因为您在脚本中进行了函数调用,然后从触发器中调用了它。

尝试摆脱函数调用,您应该会很好。尝试这样的事情:

//sendSubmissionEmail();

function sendSubmissionEmail() {

  var consultantEmail = 'example@example.com';

  {
   var subject = 'New Submission Notification - Example' ;
   var message = 'Hello, a new form has been submitted!';
  }
    // Send the email
  MailApp.sendEmail(consultantEmail, subject, message);
}

如果此修补程序不能解决您的问题,则应提供有关如何设置触发器的更多信息。