Relative Content

Tag Archive for google-sheetsgoogle-apps-scriptgmail

Googlesheet appscript not sending email automatically

function doGet(e) { return HtmlService.createHtmlOutput(“Request received”); } function doPost(e) { const sheetId = “1mtcnW8qUKz6mSRaVfIuajtyWbwlFf4s3PjT0Jh3VbNk”; // Replace with your actual sheet ID const sheetName = “Sheet1”; // Replace with your actual sheet name try { const ss = SpreadsheetApp.openById(sheetId); const sheet = ss.getSheetByName(sheetName); const params = e.parameter; // Append the form data to the sheet sheet.appendRow([params.name, […]