Tanookie
Tanookie

Reputation: 1

Aiogram. How to send message without sound?

I can send message without sound. Can bot send message without sound using Aiogram?

Upvotes: 0

Views: 1861

Answers (1)

0stone0
0stone0

Reputation: 44172

Yes, Aiogram supports the disable_notification option.

For example, on a reply[docs] on /start:

@dp.message_handlers(commands=['start'])
async def welcome(message: types.Message):
    await message.reply(text="No sound!", disable_notification=True)

Upvotes: 2

Related Questions