PLCGuy Posted December 2, 2012 Posted December 2, 2012 I have two different notifications actions set up in the same program. They both go to the same email account. One works and the other doesn't: The notification called 'Light Change Notice' works: ${alert.subject} This one (Schedule Change Notice) doesn't: ISY99 Changed to ${sys.program.#.name} Operation at ${sys.time12} ${sys.date} The program is trivial: If From Sunrise To Sunset (same day) Then $State_Schedule = 1 Send Notification to 'MyGmail' content 'Light Change Notice' Send Notification to 'MyGmail' content 'Schedule Change Notice' Else - No Actions - (To add one, press 'Action') The Error Log shows the following whenever the ISY attempts to send 'Schedule Change Notice' Sun 2012/12/02 01:41:24 PM System -50001 -19 What am I doing wrong? FYI I am running 3.2.6 and have moved the 'Schedule Change Notice' to a number of programs without success. Thanks for any guidance
Michel Kohanim Posted December 3, 2012 Posted December 3, 2012 Hi PLCGuy, What's in the body? If nothing, you might want to add a something to the body. -19 means Write Failed. In short, the server didn't let ISY write the body of notification. With kind regards, Michel
PLCGuy Posted December 3, 2012 Author Posted December 3, 2012 What's in the body? If nothing, you might want to add a something to the body. That was it - with some text in the body, the notification Worked like a charm - thanks!
Recommended Posts