Created
April 21, 2019 17:38
-
-
Save iskenxan/e2d4fe551344550779907ea43b1c5fee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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