Answer the question
In order to leave comments, you need to log in
How to get the last few messages sent?
There is a bot that contains several buttons to go to sections. From each section you can leave an application. The script accepts the application and sends it to the mail. The code is something like this:
function getresult_custom($data){
# Выводим кнопку "Вернуться назад"
if($data['message'] == $data['label']){
# Формируем кнопку "Вернуться назад":
$keyboard[] = array($_lang['back_button']);
# Выводим описание модуля:
tgApi(
'sendMessage',
array(
'chat_id' => $data['source']['message']['chat']['id'],
'text' => ''Описание раздела,
'parse_mode' => 'Markdown',
'reply_markup' => json_encode(
array(
'keyboard' => $keyboard,
'resize_keyboard' => true,
'one_time_keyboard' => false
)
)
)
);
} else {
$form_result = $data['message'];
$send_email = sendEmail($form_result);
return "Ваша заявка успешно отправлена! \nТекст заявки: ". $form_result ."\nМы перезвоним Вам в течение 15 минут. \nНажмите 'Вернуться назад' для выхода.";
}
}
Answer the question
In order to leave comments, you need to log in
Keep your message history and do whatever you want with it.
Bot can't get history
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question