Send notifications via messaging apps from R.
Currently supports the following messaging apps:
- Google Workspace Spaces
- Pushbullet
- Slack
- Zulip
# install.packages("remotes")
remotes::install_github("FOR-CAST/notifications")see ?notify_google
library(notifications)
notify_google("Here's an important message about the code you just ran: it worked!")see ?notify_pushbullet
library(notifications)
notify_pushbullet("Your job has compeleted.")see ?notify_slack
library(notifications)
notify_slack("Error running job. See `traceback()` for more details.")see ?notify_zulip
library(notifications)
notify_zulip("There was a problem with your script - please check the logs.")