Hi @sotomo,
Do you want to send an email to the users using Microsoft Flow?
When you want to send an reminder email to the user? Could you please share a bit more about the SQL table which stores the recurrence information?
I assume that there is a date (or date time) column within your SQL table to store the time when the user's job functions occur, and have a column to store the email address of the user. I think Microsoft Flow could achieve your needs.
I have made a test on my side, please take a try with the following workaround:
Within Condition box, click "Edit in advanced mode", type the following formula:
@equals(formatDateTime(items('Apply_to_each')?['OccurTime'], 'MM/dd/yyyy'), utcNow('MM/dd/yyyy'))
Note: The OccurTime is a Date type column in my SQL table. The ExecutorEmail is a column in my SQL table, which is used to store the email address of the user. In addition, I use On-Premises SQL table to store the users' recurrence information. The flow would be fired every day, then check if someone's job functions occur today.
The flow works successfully as below:
More details about WDL expression in Microsoft Flow, please check the following article:
WDL expression in flow actions
Best regards,
Kris