channel = await member.create_dm()
await channel.send("hi this is a dear message")
await user.send("hi this is a dear message")
# sends a DM to the user
@client.event
async def on_message(message):
msg = message.content
if msg.startswith('Hello!'):
await message.author.send("Well hello there!")