Files
hossein-por-shop/backend/utils/telegram_bot.py
2024-12-05 14:07:57 +03:30

8 lines
185 B
Python

import telebot
from django.conf import settings
bot = telebot.TeleBot(settings.TELEGRAM_BOT_TOKEN)
def send_telegram_message(chat_id, message):
bot.send_message(chat_id, message)