简体   繁体   中英

How to DM user using discord.js

I'm making a bot on Discord.js. The bot will give a role to every user. The problem is I want the bot DM the role to each user. The code was just not working for me.

What I've tried:

client.users.get('id').send('Blabla') , but it didn't work.

message.author.send("Blabla.") would only send the message to the author.

message.channel.send("Blabla") would only send the message to a channel.

client.users.get('id').send('Blabla') did not work because in discord.js v12 you have to use the new cache system, in your case it's UserManager#cache .

So your solution is: client.users.cache.get('id').send('Blabla')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM