discord.js get embed from message code example
Example 1: discord.js send embed
message.channel.send({
"embed": {
"color": 12943398,
"fields": [
{
"name": "Information",
"value": "Embeds work for both text, and emoji. You can use variables too"
}
]
}
})
//If you want to make your own rich embed, I would recommend the website listed below next to source
Example 2: how to send an embed message discord.js
let Embed = new Discord.MessageEmbed()
.setTitle()
.setAuthor()
.setColor()
.addField()
.setDescription()
.setThumbnail()