g3et guild by id discord.js 11.3.2 code example
Example 1: discord js channel send
const user = <client>.users.cache.get('<id>');
user.send('<content>');
Example 2: discord js channel send
const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');