如何将消息专门发送到用户的私人频道?
答案 0 :(得分:1)
使用此:
await ctx.author.send(message_here)
它将在此处发送变量message_的内容。
它与其他.send()的工作方式相同,因为它仍然返回一条消息,您可以发送嵌入内容并添加一个delete_after。
答案 1 :(得分:0)
async def help(ctx):
author = ctx.message.author
await client.send_message(author, 'your text here')
当用户键入命令help时,它将发送
您在此处输入文字
给消息的作者。