Integrations

Several third party applications allow integrating over email. Since CI Notify provides zero-configuration email notifications, it’s possible to integrate with third party applications without having to manage API keys.

Slack

View Slack Documentation

Once you generate a Slack email address, you can use that to send notifications from GitHub Actions, CircleCI, or the REST API. Here’s one example:

uses: cinotify/github-action@main
with:
  to: "email-abc123456@mycompany.org.slack.com"
  subject: "building main"
  body: "This is a notification from GitHub actions."

Microsoft Teams

View Teams Documentation

Once you generate a Teams email address, you can use that to send notifications from GitHub Actions, CircleCI, or the REST API. Here’s one example:

uses: cinotify/github-action@main
with:
  to: "email-abc123456@mycompany.org"
  subject: "building main"
  body: "This is a notification from GitHub actions."