I want my bot to reply to a certain person in chat every time he writes (in fact every 2 hrs, like regular cuddling) e.g.
User1: Good morning everyone
User2: Good morning
Bot: (reply to User2): Have a nice day!
Now i can send messages to group from bot
@dp.message_handler(commands="HAD")
async def cmd_dice(message: types.Message):
await message.bot.send_message($here chat_id$, text="Have a nice day!")
I don't understand how I can reply to user messages if he doesn't address the bot. Is this possible? Thanks in advance for your help!