@muriel.schmidt
To mention everyone in a Discord message using discord.js, you can use the @everyone
tag in your message content. Here is an example code snippet to achieve this:
1 2 3 4 5 6 7 8 9 |
// Replace 'YOUR_MESSAGE_CONTENT' with the message you want to send const message = 'YOUR_MESSAGE_CONTENT @everyone'; // Replace 'YOUR_TEXT_CHANNEL_ID' with the ID of the text channel you want to send the message to const channelId = 'YOUR_TEXT_CHANNEL_ID'; // Fetch the channel and send the message const channel = client.channels.cache.get(channelId); channel.send(message); |
Make sure to replace the placeholders with the appropriate values in your code. It's important to note that using the @everyone
tag should be done responsibly, as it can be considered spamming or may not be appropriate for all situations.