@dp.message_handler(user_id=admin_id, commands=['tellall'])
async def mailing(message: types.Message):
users = db.select_all_users()
for user in users:
await bot.send_message(chat_id=message.from_user.id,
text="Тестовая рассылка")
await sleep(0.3)