Hey so this is my code and I want that the bot dms the member with 'test'
@has_permissions(kick_members=True)
@client.command()
async def kick(ctx, member: discord.Member, *, reason=None):
embed_kick = discord.Embed(title=f'Kick command usage')
embed_kick.set_footer(text=f'VexArtz Community Discord')
embed_kick.add_field(name=f'Kicked user', value=f'{member}', inline=True)
embed_kick.add_field(name=f'Reason', value=f'-{reason}', inline=True)
embed_kick.add_field(name=f'Author', value=f'{ctx.author.mention}', inline=True)
await member.kick(reason=reason)
await ctx.channel.purge(limit=1)
log_channel = client.get_channel(858716439849861121)
await log_channel.send(embed=embed_kick)