Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When a critical component of your exhibit goes down, you want to know right away. Gumband has email notifications built-in for a number of use cases, such as when the Operation Mode changes or the exhibit goes offline/online, but you can also define your own custom email notifications with the GumbandSDK.notifications.email(customMessage: string) function:

Code Block
languagejs
//listening for errors on a connection to some generic third party integration
thirdPartyIntegration.on('error', () => {
    this.gumbandSDK.notifications.email("An error occurred with the third party integration");
});

...