how to send dm to every member in discord with discord.js code example
Example: how to send dm to every member in discord with discord.js
if(checkCommandSusan(message, "notify")) {
message.guild.members.forEach(m => {
if(m.roles.includes(r => r.name === "role name") return m.send("message")
})
})
}