const { MessageEmbed } = require('discord.js'); const embed = new MessageEmbed() .setTitle(`Testing`) .setDescription(`This is the description`) .setTimestamp(); <Channel>.send({ content: `String / Message to send`, embeds: [embed]});