layout | title | nav_order | description | permalink |
---|---|---|---|---|
default |
Home |
1 |
Documentation Of Modmail.js |
/ |
Modmail.js is an advance Discord Modmail template.
- Performant
- Build-in Plugins
- Easy To Setup
- Extendable
npm i modmail.js@latest
const { Modmail, Intents } = require('modmail.js')
(async () => {
try{
const modmail = await Modmail({
token: 'BOT_TOKEN',
inbox: 'INBOX_CHANNEL_ID',
prefix: 'BOT_PREFIX',
clientIntents: ['CLIENT_INTENTS'],
message: '@mentions/messages',
});
console.log(modmail)
}catch(e){
console.log(e)
}
})()