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, […]
Question regarding prefilled link in Gmail using appscript
I want to send clickable prefilled link on Gmail in pdf using appscript. I wrote all code working perfectly but only . Prefilled link not coming in pdf. Please help me out.