I am not convinced this is the way I would build it… but hey what do I know? Here is a version of what you were asking for:
-
reminders (table)
- datetime (field)(date, include 24hr time)
- now (field)(formula: DATETIME_FORMAT(NOW(), ‘M/DD/YYYY HH:00’)
- diff (field)(formula: DATETIME_DIFF(now,datetime,‘minutes’))
- events (field)(link to events)
- tasks (field)(link to tasks)
-
events (table)
- eventID (field)(single-line text)
- event_name (field)(single-line text)
- status (field)(single select)
-
tasks (table)
- taskID (field)(single-line text)
- task_subject (field)(single-line text)
- status (field)(single select)
and then you can create a ‘now’ view like so:
An Automation that is triggered by records entering this view is easy enough, but the next challenge you have is deciding what is the least amount of information to provide to generate a reaction, and what that interaction should be? A link to the record? A link to the table? A link to some external system? A webhook…
So before the email, it seems to me like you might want to consider ‘Run a script’ to do at least two things:
- batch and/or categorize the records ( some times will have multiple events or tasks… ) ( the email might have a different format for events or tasks… )
- get more information from the linked records in the ‘reminder’ record ( link )