use GuzzleHttp\Client;
use Yii;
+use yii\helpers\Json;
use yii_app\records\UsersTelegramMessage;
class TelegramService
'chat_id' => $chatId,
'text' => $message,
'parse_mode' => 'MarkdownV2',
+ 'reply_markup' => Json::encode([
+ "inline_keyboard" => [
+ [
+ ['text' => "Наш сайт", "url" => "https://bazacvetov24.ru/"],
+ ['text' => "Адреса салонов", "url" => "https://bazacvetov24.ru/contacts/"],
+ ],
+ [
+ ['text' => "1000 руб. забрать", "url" => "https://bazacvetov24.ru/akcii/"],
+ ['text' => 'Списание бонусов', 'url' => 'https://bazacvetov24.ru/bonuses/']
+ ]
+ ]
+ ]),
],
]);