This doesn't use any email functionality because I don't have that available to test but I was able to create a basic app using the Incoming Webhooks function when building an app in Slack.
Slack will provide an example using Curl that can be used in a script on the Smartevent server.
In my case, my script is placed under /home/admin/scripts
#!/bin/bash
curl_cli -kX POST -H 'Content-type: application/json' --data '{"text":"Hello, World!"}' https://hooks.slack.com/services/RANDOMSTRINGPROVIDEDBYSLACK
I then created an automatic reaction that triggers the script when called.
![SME.png SME.png](https://community.checkpoint.com/t5/image/serverpage/image-id/4941i7780035A3CACFB62/image-size/large?v=v2&px=999)
When triggered, it runs the curl script to post whatever message is defined in the "--data" portion of the curl command.
![slack.png slack.png](https://community.checkpoint.com/t5/image/serverpage/image-id/4940i5DEC17D8373CB7AC/image-size/medium?v=v2&px=400)
I'm sure there are better options available when interacting in Slack, but this was my quick effort that might provide some direction.