Last updated by admin 1 year ago
grails install-plugin notify-io
Last updated by digerata 1 year ago
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:grails install-plugin notify-io
To configure:Add to your Config.groovy:
notifyio {
userHash = "[userHash from your notify.io account]"
apiKey = "[apiKey from your notify.io account]"
} To use:def notifyIoService
//…
notifyIoService.notify("email@domain.com", "Your notification text.")
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.
Last updated by admin 1 year ago
Last updated by admin 1 year ago