Discord.pyを使っていたのですが、ボットに下記のコードを使ってembedを表示させようとしても表示されません。どこを修正すればいいのでしょうか?

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return
    if message.content.startswith('$test'):
        await message.channel.send((embed))
embed=embedobj
embed = discord.Embed(title="ぼっとヘルプ一覧", colour=discord.Colour(0x112f43), url="https://discordapp.com", description="```Prefix:$```", timestamp=datetime.datetime.utcfromtimestamp(1551172370))

embed.set_image()
embed.set_thumbnail(url="http://3.bp.blogspot.com/-k74QBLjNuyg/TtiCcfDf2pI/AAAAAAAAAGw/coMwMiItguo/s1600/Mameshiba-Edamame-Wallpaper.jpg")
embed.set_author(name="eDaMAme#1597", url="https://discordapp.com", icon_url="https://bit.ly/2SsIBiC")
embed.set_footer(text="footer text", icon_url="https://cdn.discordapp.com/embed/avatars/0.png")

embed.add_field(name="$hello", value="挨拶をします")
embed.add_field(name="$weather", value="お天気情報")
embed.add_field(name="$zisin", value="地震情報")
embed.add_field(name="$happy,$sad,$angry", value="絵文字表示", inline=True)
embed.add_field(name="そのほかいろいろ", value="追加予定", inline=True)

await bot.say(embed=embed)

client.run('token')