Notify.io - Get desktop notifications from web applications
Dependency :
compile ":notify-io:1.2"
Summary
Installation
grails install-plugin notify-io
Description
Grails plugin to integrate with Notify.ioThis plugin allows your Grails apps to send out notifications via the http://www.notify.io/ service. Say an event takes place in your app. You can notify your user that it happened via a lightweight desktop notification, as opposed to crusty old email.There isn't much to integrating with notify.io, but we are all lazy, aren't we?To install:To configure:Add to your Config.groovy:To use:
To build and test this plugin:Grab the source from: http://github.com/digerata/grails-notifyioSetup your test configuration by creating a file in ~/.grails/NotifyIo-config.groovy and adding your userHash, apiKey and a test.email="youremail" value.
grails install-plugin notify-io
notifyio {
userHash = "[userHash from your notify.io account]"
apiKey = "[apiKey from your notify.io account]"
}def notifyIoService //… notifyIoService.notify("email@domain.com", "Your notification text.")