Slack.Webhooks
Slack.Webhooks copied to clipboard
Cant tag a user with <@userid> this way
Shouldn't the text be able to tag users? What's the syntax?
Hi, you can find here how to mention users, groups .. https://api.slack.com/reference/surfaces/formatting Example
var slackMessage = new SlackMessage
{
Channel = "m_channel",
Text = "<!here> test",
IconEmoji = Emoji.Ghost,
Username = "username"
};
@johnkwaters just hit this, did you find a way?