client.sendMessage

Send your custom styled messages.

Parameter
Type
Description

channel

Discord Channel

The channel you want to send the message to

content

String

The body of the message you want to send

title

String

Usually the name of the command

Example Usage

execute(client, message, args) {
   client.sendMessage(message.channel, "This is a test message!", "Test");
},

Last updated