Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created April 21, 2019 17:38
Show Gist options
  • Select an option

  • Save iskenxan/e2d4fe551344550779907ea43b1c5fee to your computer and use it in GitHub Desktop.

Select an option

Save iskenxan/e2d4fe551344550779907ea43b1c5fee to your computer and use it in GitHub Desktop.
const slack = require('slack')
const SlackStrategy = {
send: function(receiptHtml, userEmail) {
const user = getUserFromEmail(userEmail);
const slackMessageBody = getSlackMessageBody(receiptHtml, userEmail);
slack.chat.postEphemeral({ token, channel, slackMessageBody, user })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment