Answers for "how to get user who sent the message discord.py"

1

discord.py get id of sent message

sent_message = await ctx.send("I want to get the ID of this message")
print(message.id)
Posted by: Guest on August-23-2021
1

discord.py message user

if message.content == "dm":
        await message.channel.send("Dming user")
        dm = await message.author.create_dm()  # Creates a dm channel with the user
        await dm.send("What you want to send")  # Sends the user the message
Posted by: Guest on March-08-2021

Code answers related to "how to get user who sent the message discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language