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