Hello all,
I am trying to send an email every day at 8 am about the active alarms in ignition ? can someone please help me on how to go about it ?
Hello all,
I am trying to send an email every day at 8 am about the active alarms in ignition ? can someone please help me on how to go about it ?
One way could be using a scheduled script, that calls system.alarm.queryStatus to query all active unacked alarms. queryStatus returns a AlarmQueryResult which contains all data about the alarm events so you can get whatever information you would like to send like the display path and event time for example. Finally to send the email I would use system.net.sendEmail to send the email containing your message.