使用discord.py将消息发送到特定频道

时间:2020-01-25 19:46:33

标签: python discord.py

我正在尝试使用discord.py制作一个modmail机器人,但是我正在尝试将消息从DM发送到服务器中的特定通道。我尝试了以下方法:

@bot.command()
async def startcase(ctx, *args):
  channel = client.get_channel(XXXXXX)
  mesg = ' '.join(args)
  await ctx.channel.send(mesg)

1 个答案:

答案 0 :(得分:0)

您正在使用Context.channel属性中的通道(而不是从Client.get_channel获得的channel)发送消息,该属性将是发送命令的通道