Skip to content

Instantly share code, notes, and snippets.

@msteele3
msteele3 / code.txt
Last active July 4, 2024 16:22
Free Waitlist Using Google Sheets
APPSCRIPT CODE(Adapted, see bottom for source):
const sheets = SpreadsheetApp.openByUrl("YOURSHEETLINKHERE")
const sheet = sheets.getSheetByName("Sheet1");
function doPost(e){
let data = e.parameter;
sheet.appendRow([data.Email]);
return ContentService.createTextOutput("Your message was successfully sent to the Googlesheet database!");