A dead simple Go library for sending notifications to various messaging services.
## About *Notify* arose from my own need for one of my api server running in production to be able to notify me when, for example, an error occurred. The library is kept as simple as possible to allow a quick integration and easy usage. ## Disclaimer Any misuse of this library is your own liability and responsibility and cannot be attributed to the authors of this library. See [license](LICENSE) for more. Spamming through the use of this library **may get you permanently banned** on most supported platforms. ## Install ```sh go get -u github.com/nikoksr/notify ``` ## Example usage ```go // The notifier we're gonna send our messages to notifier := notify.New() // Create a telegram service. Ignoring error for demo simplicity telegramService, _ := telegram.New("your_telegram_api_token") // Passing a telegram chat id as receiver for our messages. // Basically where should our message be sent to? telegramService.AddReceivers("-1234567890") // Tell our notifier to use the telegram service. You can repeat the above process // for as many services as you like and just tell the notifier to use them. // Its kinda like using middlewares for api servers. notifier.UseService(telegramService) // Send a test message _ = notifier.Send( "Message Subject/Title", "The actual message. Hello, you awesome gophers! :)", ) ``` ## Supported services - *Discord* - *Email* - *Microsoft Teams* - *Slack* - *Telegram* ## Roadmap - [ ] Add tests (see [#1](https://github.com/nikoksr/notify/issues/1)) - [ ] Add more notification services ## Credits - Discord support: [bwmarrin/discordgo](https://github.com/bwmarrin/discordgo) - Email support: [jordan-wright/email](https://github.com/jordan-wright/email) - Microsoft Teams support: [atc0005/go-teams-notify](https://github.com/atc0005/go-teams-notify) - Slack support: [slack-go/slack](https://github.com/slack-go/slack) - Telegram support: [go-telegram-bot-api/telegram-bot-api](https://github.com/go-telegram-bot-api/telegram-bot-api) - Logo: [MariaLetta/free-gophers-pack](https://github.com/MariaLetta/free-gophers-pack) ## Author **Niko Köser** * Twitter: [@nikoksr](https://twitter.com/nikoksr) * Github: [@nikoksr](https://github.com/nikoksr) ## Contributing Contributions, issues and feature requests are welcome!