Untitled
import asyncio from aiogram import Bot, types from aiogram.dispatcher import Dispatcher from aiogram.utils import executor bot = Bot(token="YOUR_BOT_TOKEN") dp = Dispatcher(bot) async def send_message_to_user(user_id, message_text): try: await bot.send_message(user_id, message_text) except Exception as e: print(f"Ошибка при отправке сообщения: {e}") async def main(): # Замените USER_ID на ID пользователя (чата), которому вы хотите отправить сообщение user_id = USER_ID message_text = "Привет, это сообщение отправлено без команды пользователя!" await send_message_to_user(user_id, message_text) if __name__ == "__main__": loop = asyncio.get_event_loop() loop.run_until_complete(main())
Leave a Comment