I have an Errbot function that sends a Slack card. How do I then add a reaction to the card instead of the original message(msg) that was received?
@botcmd
def example(self, msg):
self.send_card(title='Test',
body='test123',
thumbnail=' ',
image=' ',
link=' ',
color='green',
in_reply_to=msg)
self._bot.add_reaction(card_msg??, 'grey_question')