ShahriarAbidbd/SmartifyXBotPublic · Bot Template
Do Tasks Smartly with SmartifyX 😎
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/menu_contact.js
javascript · 35 lines
1/**#command2name: menu_contact3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.editMessageText({13 text: `*Connect with us :*14 15• [Telegram](https://t.me/ShahriarAbidbd)16 17*Contact :*18 19• *Telegram:*20- *via Account:* @ShahriarAbid21- *via Bot:* @ShahriarAbidbot`,22 chat_id: chat.id,23 message_id: request.message.message_id,24 reply_markup: {25 inline_keyboard: [26 [{27 text: "Back",28 callback_data: "menu_home",29 style: "danger"30 }]31 ]32 },33 parse_mode: "markdown",34 disable_web_page_preview: true35})