Turning off the alarm output is not a good thing to do. I'll go so far as to say it's a really
BAD thing. A good way to handle non-critical alarm conditions is by use of a virtual output. Here is an example for low ATO reservoir:
[ReservoirLow] (a virtual output)
Set OFF
If ResLow OPEN Then ON
If Time 08:01 to 19:59 Then OFF
If Time 20:01 to 07:59 Then OFF
Then test the state of that virtual outlet in the email program:
[EmailAlarm]
{your existing programming}
If Output ReservoirLow = ON Then ON
This assumes that the float switch or optical sensor named ResLow is OPEN when the water level in the reservoir is low. If the water level is low, the VO will only turn on for 1 minute at exactly 8AM and/or 8PM, thereby also only turning on the alarm output for 1 minute twice a day.
Voila! You get a reminder that the ATO reservoir needs to be refilled just twice a day, and at convenient times of your choosing. And this also eliminates the big problem of forgetting to slide the email tile slider from OFF to AUTO. Even more importantly, other much more critical alarms can still come through.