how to send a message to a channel with discordjs code example
Example 1: 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>")
Example 2: discord.js send message to specific channel
channel = client.channels.cache.get('757685515255545917');
channel.send('Pong');