Answers for "discord send message to channel"

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
0

how to send a message to a discord server using a bot

const channel = client.channels.cache.get(channel => channel.name === 'the channel name')
channel.send(message)
Posted by: Guest on January-20-2021
0

send a message discordjs

message.channel.send("A message!");
message.reply("A message to the sender!");
Posted by: Guest on August-19-2020

Code answers related to "discord send message to channel"

Python Answers by Framework

Browse Popular Code Answers by Language