Someone asked me to make a bot for him that sends a DM to anyone he specifies through a command, like *send_dm @Jess#6461 hello
.
I’ve searched alot and I came across this code:
JavaScript
x
3
1
async def send_dm(ctx,member:discord.Member,*,content):
2
await client.send_message(member,content)
3
but then I got the error:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: ‘Bot’ object has no attribute ‘send_message’
I want to type for example : *send_dm @Jess#6461 hello
and the bot sends a DM saying “hello” to that user.
Advertisement
Answer
client.send_message()
has been replaced by channel.send()
in the version 1 of discord.py
You can use Member.create_dm()
to create a channel for sending messages to the user
JavaScript
1
4
1
async def send_dm(ctx, member: discord.Member, *, content):
2
channel = await member.create_dm()
3
await channel.send(content)
4