how to connect user client in discord.js 12 code example
Example 1: get channel id discord js v12
client.channels.cache.get('id')
Example 2: discord js channel send
const user = <client>.users.cache.get('<id>');
user.send('<content>');
client.channels.cache.get('id')
const user = <client>.users.cache.get('<id>');
user.send('<content>');