Skip to content

Slack

The SlackHook class is used to transmit messages to Slack channels. Check out the guide below if you don't know how to set up Slack webhooks.

Guide

Highlights & Features

  • Webhook Integration: Set your Slack webhook URL and start sending messages effortlessly.
  • Custom Sender Identity: Specify a username, opt for an iconic image, or even select an emoji that best represents the sender's identity.
  • Channel Flexibility: Define the Slack channel to relay your messages, providing granular control over where your notifications land.

Example

SlackHook slack = new SlackHook(webhookUrl);
slack.Channel = "#yourChannel";
slack.Username = "YourBotName";
slack.IconEmoji = ":robot_face:";
slack.SendAsync("Hello, Slack!");