deletedaccount/Filosofi_1botPublic · Bot Template

Make more optional and custom bot contact @Mr_WASI_Developer

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

commands/Admin/process_reject_reason.js

javascript · 28 lines

Raw
1/**#command2name: process_reject_reason3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12var targetUserId = User.getProperty("reject_target_user");13var reason = message;14 15if (!targetUserId) return;16 17// Notify User with Reason18Api.sendMessage({19  chat_id: targetUserId,20  text: "❌ *Gmail Rejected!*\n\nআপনার জমা দেওয়া Gmail টি বাতিল করা হয়েছে।\n📌 *কারণ:* " + reason,21  parse_mode: "Markdown"22});23 24// Notify Admin25Bot.sendMessage("❌ User (" + targetUserId + ") কে রিজেক্টেড নোটিফিকেশন পাঠানো হয়েছে।");26 27// Clear state28User.setProperty("reject_target_user", null);