slack-bot-api icon indicating copy to clipboard operation
slack-bot-api copied to clipboard

Format messages as markdown

Open justingosan opened this issue 8 years ago • 1 comments

bot.postMessageToChannel('orders', message, {mrkdwn: true});

This doesnt seem to work

justingosan avatar Feb 06 '17 15:02 justingosan

You can use it like this

const params = { icon_emoji: ':dog:', mrkdwn: true, attachments: [{ pretext:'hello', text:'more text' }], };

 bot.postMessageToChannel('general', '', params);

AlmarAubel avatar May 07 '18 12:05 AlmarAubel