Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 964 Bytes

email-alerts.md

File metadata and controls

31 lines (19 loc) · 964 Bytes

Email Alerts

Setting up the EmailServer Programmatically

If you are in a notebook or pipeline you may prefer to use the Scala/Spark API to create the Email Server

    val emailServer = OwlUtils.createEmailServer("smtp-relay.sendinblue.com", 587)
    emailServer.setUsername("[email protected]")
    emailServer.setPassword("abc")
    emailServer.setCurrentSet(1)
    Util.EmailServerDaoFactory.delete(emailServer)
    Util.EmailServerDaoFactory.insert(emailServer)

Setting up an Email Server using the WebApp

Navigate to OwlWeb URL. Then click the gear icon on the left in the admin section and click alerts.

Creating a Condition to Send an Alert

Also shows some of the common rules associated with this dataset for quick reference while creating.

Example Alert in your Inbox