Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

/* eslint-disable no-undef */

/**
*
* -------------------------
* Important - PLEASE READ
* -------------------------
*
* If you are new here, read tutorial at https://www.labnol.org/internet/file-
upload-google-forms/29170/
*
* If you get any script errors, see
https://digitalinspiration.freshdesk.com/support/discussions/topics/81000115479
*
* If you get Malformed HTML errors, see
https://digitalinspiration.freshdesk.com/support/solutions/articles/81000185770-
malformed-html-content-error-solution
*
* If you get a blank screen in Google Sheets, see
https://digitalinspiration.freshdesk.com/support/discussions/forums/81000058914

* --------------------
* Author and Credits
* --------------------
*
* Developer: Amit Agarwal
*
* Email: support@digitalinspiration.com
*
* Website: https://digitalinspiration.com/GA14
*
* Tech Support: https://digitalinspiration.support

* -----------------------
* Required OAuth Scopes
* -----------------------
*
* For sending email notfications when the form is submitted
* MailApp.getRemainingDailyQuota()
*
* For saving uploaded files in the owner's Google Drive
* DriveApp.getStorageUsed()
*
* For creating Google Sheets from the form data
* SpreadsheetApp.getActive()
*
* For saving user preferences and settings inside the script
* PropertiesService.getUserProperties()
*
* For serving the Google Script as an online form
* HtmlService.createHtmlOutput()
*

*
* This is licensed software. Please do not copy or redistribute.
*
* */

function doGet(e) {
return FormsApp.doGet(e);
}

function onOpen() {
FormsApp.onOpen();
}

function showForm() {
FormsApp.showForm();
}

function showSidebar() {
FormsApp.showSidebar();
}

function run(a, b, c) {
return FormsApp.run(a, b, c);
}

function showActivate() {
FormsApp.showActivate();
}

You might also like