Mass DM bot was working fine and now it wont send messages

I’m not sure but your problem is probably because of Intents. In the new version of discord.py(1.5.x), there’re some updates about Intents. Intents are similar to permissions, you have to define it to get channels, members and some events etc. You have to define it before defining the bot = discord.Bot(prefix='').

import discord

intents = discord.Intents().all()
bot = discord.Bot(prefix='', intents=intents)

If you want to get more information about Intents, you can look at the API References.

Leave a Comment