Skip to content

Instantly share code, notes, and snippets.

@antimech
Last active May 28, 2023 06:18
Show Gist options
  • Save antimech/285f58b54efcca56ebabe6a85cacbaba to your computer and use it in GitHub Desktop.
Save antimech/285f58b54efcca56ebabe6a85cacbaba to your computer and use it in GitHub Desktop.
Botman 2.0 Telegram inline keyboard snippet
<?php
$welcomeMessage = 'Hello and welcome! This is a very cool service behind a paywall. Get started today!';
$keyboard = [
'Get a free trial for 5 days',
'Check FAQ'
];
// Reply to user
$bot->reply($welcomeMessage, [
'parse_mode' => 'Markdown',
'reply_markup' => json_encode([
'inline_keyboard' => $keyboard
])
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment