$channelSendMessage
Sends a message to a specified channel. This function allows you to send messages to any channel your bot has access to.
$channelSendMessage[channelID;message;return ID (yes/no) (optional, default=no)]
Usage: Parameter | Description | Required | Default |
---|---|---|---|
channelID | The ID of the channel to send the message to. You can get this by right-clicking the channel and selecting "Copy ID" (you must have Developer Mode enabled in Discord settings). | Yes | |
message | The message to send. This can be plain text, embeds, buttons, menus, or any other valid Discord message content. | Yes | |
return ID | yes or no . If yes , the ID of the sent message will be returned. Defaults to no . This is useful if you need to edit or delete the message later. | No | no |
Examples
Here are some examples of how to use the $channelSendMessage
function:
Send an Embed
Send a Button
Send a Menu
You can send more complex messages with features like footers and fields by using the Message Curl Format. This format allows for more detailed control over your messages.
Related Functions
- $sendMessage: Sends a message to the channel where the command was used.