deletedaccount/Filosofi_1botPublic · Bot Template

Make more optional and custom bot contact @Mr_WASI_Developer

Scamscamgmail_farmingpaid_tasksearningsreferral_bonusdaily_bonus
ProfileTelegram
33 commands0 envUpdated 6h agoCreated Aug 1, 2026
Back to folder

commands/submit_gmail_process.js

javascript · 40 lines

Raw
1/**#command2name: submit_gmail_process3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!message || !message.includes(":")) {13  Bot.sendMessage("❌ ভুল ফরম্যাট! দয়া করে `Email:Password` ফরম্যাটে পাঠান।");14  return;15}16 17var adminId = Bot.getProperty("admin_id"); // Set your Telegram ID here18var submitData = message.trim();19 20// User Notification21Bot.sendMessage("⏳ আপনার Gmail সাবমিট হয়েছে! এডমিন রিভিউ করে এপ্রুভ করলে ব্যালেন্স যোগ হবে।");22 23// Admin Notification with Inline Buttons24var adminText = "📥 *New Gmail Submission!*\n\n" +25  "👤 *User:* " + user.first_name + " (`" + user.telegramid + "`)\n" +26  "📧 *Submitted Info:* `" + submitData + "`";27 28var inlineButtons = [29  [30    { text: "✅ Approve", callback_data: "/approve_gmail " + user.telegramid },31    { text: "❌ Reject", callback_data: "/reject_gmail " + user.telegramid }32  ]33];34 35Api.sendMessage({36  chat_id: adminId,37  text: adminText,38  parse_mode: "Markdown",39  reply_markup: { inline_keyboard: inlineButtons }40});