Slack

Send Slack notifications.

Message

Send Slack notifications to your configured Slack integration.
typescript
Copied
1
import airplane from "airplane";
2
3
export default airplane.task(
4
{
5
slug: "send_slack_notifs",
6
},
7
async (params) => {
8
await airplane.slack.message("my-channel", "Hello world");
9
}
10
);
API