我正在尝试向服务器的所有成员发送 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.")