discord py dm specific user

Solutions on MaxInterview for discord py dm specific user by the best coders in the world

showing results for - "discord py dm specific user"
Eren
01 Sep 2019
1    if message.content == "dm":
2        await message.channel.send("Dming user")
3        dm = await message.author.create_dm()  # Creates a dm channel with the user
4        await dm.send("What you want to send")  # Sends the user the message