Tutorial #1: Notifications in New Sheets with Google Apps Script



Set up form submission notifications from the new Google Sheets with one line of Google Apps Script.

Here is the Google Apps Script code:

function myFunction() {
MailApp.sendEmail(“[email protected]”, “Your title – someone submitted a form”, “Your message in the email”);
}

Comments are closed.