Home > Mobile >  How to also include normal content in an embed message?
How to also include normal content in an embed message?

Time:05-31

How do I also include normal content in an embed message just like the following image?

image

for instance, this is a normal embed message.

embed = discord.Embed(title="example", description="embed content")
await ctx.reply(embed=embed)

CodePudding user response:

You are able to add content to a message as well as an Embed by specifying the content in the reply() parameters.

from discord import Embed

content = "content"
embed = Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)

CodePudding user response:

Just use keyword argument for content await ctx.reply(content='content', embed=embed) docs

  • Related