Home > Mobile >  Google form Apps Script to send email after form submission
Google form Apps Script to send email after form submission

Time:09-17

I am trying to modify a google-form app script explained enter image description here

CodePudding user response:

Try replacing

  if (topics.length > 0) {

...with:

  if (!topics.length) {
    topics = ['(no topics selected)'];
  }
  if ((true)) {
  • Related