简体   繁体   中英

Google Forms - confirmation Email summary

I created a form to collect some data. By default the responder to the form gets a PDF summary after submitting the Email. Does anybody know if it is possible to send this summary to a second Email adress I mean a copy of the summary to the form Hoster? Thanks a lot in advance.

Cheers

Basically repeating what I said in the comments there is no way to add another email address by the UI but you could try to use Apps Script .

You can use a onFormSubmit() , this is a installable trigger that executes every time a form is submitted.

You could try to look at this SO answer , where there is a definition of a trigger and sending a email:

/**
 * This function is the one that will be executed every time the trigger is activated
 */
function respondToFormSubmit() {
   MailApp.sendEmail ("email@domain.com", "Form Submited: Foo feedback " + Date.now(), "Form Submited: Foo feedback");
}

The setup of the trigger:

  var form = FormApp.getActiveForm();
  var trigger = ScriptApp.newTrigger('respondToFormSubmit')
  .forForm(form)
  .onFormSubmit()
  .create();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM