slack-bot-api
slack-bot-api copied to clipboard
Format messages as markdown
bot.postMessageToChannel('orders', message, {mrkdwn: true});
This doesnt seem to work
You can use it like this
const params = { icon_emoji: ':dog:', mrkdwn: true, attachments: [{ pretext:'hello', text:'more text' }], };
bot.postMessageToChannel('general', '', params);