Email alert on calendar events

Is it possible to customise email alert on event when value is not changed for a field within 24 hours?

@Boacasa, lookup for the the changes of a specific field is hard to get, but you can check if the last time when the document is modified, for this, you can add in the rules, something like this

from datetime import timedelta
doc.modified <= timedelta(days=-1)
1 Like