.new
but not #markAsRead
Post
or a Comment
, that's what will be coming to your inbox. For marking as read see https://not-an-aardvark.github.io/snoowrap/snoowrap.html#markMessagesAsRead__anchor
try {
await r.getNewModmailConversation('fsox5').archive()
} catch (error) {
console.log(error)
}
path: '/api/mod/conversations/fsox5/archive?raw_json=1',
which is correct. I'll see whats up with reddit's API
```const sendModMail = async (threadID, message) => {
const thread = r.getNewModmailConversation(threadID)
await thread.reply(message);
await archiveThread(threadID)
}```