При нажатии на кнопку:
callback_button = types.InlineKeyboardButton(text=" Оплатить 3500 рублей",callback_data="oplata")
Как от сюда вызвать функцию
if message.data == "oplata":
bot.register_next_step_handler(send_welcom)
Вот эту функцию
@bot.message_handler(func=lambda m: m.text in ('stop', '/stop', ' Оплатить 3500 рублей'))
def send_welcome(message):
msg = bot.send_message(message.chat.id, " Введите свой e-mail")
bot.register_next_step_handler(msg, process_name_step)
При вводе
bot.register_next_step_handler(send_welcom)
ошибка
-
Вопрос задан
-
1412 просмотров