This article shows:
1) How to create Google Form using standalone HTML file
2) Email form submitted data to any particular email address
Create HTML file
We create a Form in a new HTML File.
– Go to http://script.google.com
– Go to File -> New -> Html file
– Type the name of the file, e.g. form.html
– Write the following code in it.
[crayon-5a2d90fc4888e400347311/]
There is a Code.gs file by default in the script editor. Write the following code in it.
Note that we need doGet(e) function to publish project as WebApp. This function uses HTMLService to return ...
↧