How do I send a message to a channel by channel id

const channel = interaction.client.channels.fetch('1345305762481569822')
if (interaction.options.getUser('member').bot) {
await channel.send({embeds: [embed1]})
} else {
await channel.send({embeds: [embed1]})
await interaction.options.getUser('member').user.send({embeds: [embed2]})
}
interaction.options.getUser('member').ban({reason:interaction.options.getString('reason')})
const channel = interaction.client.channels.fetch('1345305762481569822')
if (interaction.options.getUser('member').bot) {
await channel.send({embeds: [embed1]})
} else {
await channel.send({embeds: [embed1]})
await interaction.options.getUser('member').user.send({embeds: [embed2]})
}
interaction.options.getUser('member').ban({reason:interaction.options.getString('reason')})
I keep receiving an error as I am trying to send a msg to the channel, Is it a issue with how i am fetching the channel via id.
3 Replies
d.js toolkit
d.js toolkit4w ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by OP
monbrey
monbrey4w ago
you're not awaiting the fetch either await it, or just get from cache
RateLimited
RateLimitedOP4w ago
Alr ty that fixed it

Did you find this page helpful?