向服务器 discord.py 的所有成员发送 DM

时间:2021-04-03 13:54:07

标签: python discord discord.py bots

我正在尝试向服务器的所有成员发送 dm。我使用的代码没有错误,但它不起作用。

@bot.command(pass_context=True)
async def dm(ctx, *, message):
        for user in ctx.guild.members:
            try:
                await user.send(message)
                print(f"Sent {user.name} a DM.")
            except:
                print(f"Couldn't DM {user.name}.")
        print("Sent all the server a DM.")

0 个答案:

没有答案