Answers for "how to send message to specific channel discord.js"

8

how to send a message in a specific channel discord.py

channel = client.get_channel(12324234183172)
await channel.send('hello')
Posted by: Guest on January-19-2020
4

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>")
Posted by: Guest on January-18-2020
0

discord.js send message to specific channel

client.channels.cache.get("channel ID").send("hello world");
Posted by: Guest on January-15-2021
0

discord js sending a message to a specific channel

client.channels.cache.get('CHANNEL ID').send('Hello World!')
Posted by: Guest on May-06-2021

Code answers related to "how to send message to specific channel discord.js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language