how to make bot send message in specific channel discord.js code example
Example 1: how to send a message in a specific channel discord.py
channel = client.get_channel(12324234183172)
await channel.send('hello')
Example 2: send a message to a specific channel discord.js
client.channels.get("<ID of the channel you want to send to>").send("<your message content here>")