Reputation: 1
I can send message without sound. Can bot send message without sound using Aiogram?
Upvotes: 0
Views: 1861
Reputation: 44172
Yes, Aiogram supports the disable_notification option.
disable_notification
For example, on a reply[docs] on /start:
reply
/start
@dp.message_handlers(commands=['start']) async def welcome(message: types.Message): await message.reply(text="No sound!", disable_notification=True)
Upvotes: 2