This file contains 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
public with sharing class Invocable_TriggerMCEvent { | |
@InvocableMethod(label='Send Message with new Comment to Reporter' description='Send Message with new Comment to Reporter') | |
public static void TriggerMCEvent(List<String> contactKey) { | |
MCMessagingUtils.triggerMCInteractionEvent(contactKey[0]); | |
} | |
} |