how to send a message to a certain channel discord.js code example
Example 1: discord.js send message to specific channel
channel = client.channels.cache.get('757685515255545917');
channel.send('Pong');
Example 2: discord js channel send
const user = <client>.users.cache.get('<id>');
user.send('<content>');