Skip to content

Instantly share code, notes, and snippets.

View holoc285's full-sized avatar
🏠
Working from home

Loc Ho holoc285

🏠
Working from home
  • Can Tho, Viet Nam
View GitHub Profile
@holoc285
holoc285 / google-form-to-tg.gs
Created May 15, 2025 02:55 — forked from HirbodBehnam/google-form-to-tg.gs
A google script to send submitted form results to a telegram bot
// Inspired by https://github.com/Iku/Google-Forms-to-Discord
const BOT_API = "YOUT_BOT_API";
const CHAT_ID = "CHAT_ID";
function onSubmit(e) {
var form = FormApp.getActiveForm();
var allResponses = form.getResponses();
var latestResponse = allResponses[allResponses.length - 1];
var response = latestResponse.getItemResponses();
var result = "";