This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Slack.
Summary
Post message to Slack Channel
Syntax
public SlackChatMessageResult PostMessage(string channel, string text, SlackChatMessageSettings messageSettings)
Examples
Information("Sending message to Slack...");
var settings = new SlackChatMessageSettings { Token = "token" };
var postMessageResult = Slack.Chat.PostMessage(
"Cake",
"It's not a party without Cake!",
settings
);
if(postMessageResult.Ok)
{
Information("Message {0} successfully sent.", postMessageResult.TimeStamp);
}
else
{
Error("Failed to send message: {0}.", postMessageResult.Error);
}
Attributes
Type |
Description |
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
channel |
string |
Channel to send message to. Can be a public channel, private group or IM channel. Can be an encoded ID, or a name. |
text |
string |
Text of the message to send. For message formatting see Formatting | Slack |
messageSettings |
SlackChatMessageSettings |
Lets you override default settings like UserName, IconUrl or if it should ThrowOnFail |
Return Value