how to make a bot send whatever you dm it into a server discord.py
# We will be importing the discord.ext.commands extension for this.
from discord.ext import commands
import discord
# We make the bot definition and set the prefix to !
bot = commands.Bot(command_prefix='!')
# Here starts the real fun
@bot.command()
async def DM(ctx, user: discord.User, *, message=None):
# Once we define the argunments we need, it's pretty straight forward.
message = message
await user.send(message)
# You, that's it!
bot.run("TOKEN")