Copy code này dán vào app script của Google Sheets. /* Google app-script to utilise Elementor Pro Forms webhook */ var emailNotification = false; /* Thay đổi thành "true" để bật thông báo qua email */ var emailAddress = "mailcuaban@google.com"; /* CHỈNH SỬA cái này vào email của bạn */ // KHÔNG CHỈNH SỬA CÁC THÔNG SỐ TIẾP THEO NÀY var isNewSheet = false; var receivedData = []; function doGet( e ) { return HtmlService.createHtmlOutput( "Yep this is the webhook URL, request received" ); } // Webhook Receiver - triggered with form webhook to published App URL. function doPost( e ) { var params = JSON.stringify(e.parameter); params = JSON.parse(params); insertToSheet(params); // HTTP Response return HtmlService.createHtmlOutput( "post request received" ); } // Flattens a nested object for easier use with a spreadsheet function flattenObject( ob ) { var toReturn = {}; for ( var i in ob ) { if ( ! ob.hasOwnProperty( i ) ) continue; if ( ( typeof...