Re: Send weekly reminder mails without using Recurrence template in MS flows
@mani the only solution I can think of is that you add a button to each item of your SharePoint list and you manually start the flow for any items that have passed the due date.
So in your list you would have a single line of text column which you format using JSON code:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"txtContent": "Complete form",
"customRowAction": {
"action": "executeFlow",
"actionParams": "{\"id\": \"52b76de4-f775-456c-87ad-61c46714990a\"}"
}
}
You would change the txtContent line to the button text that you want. You also change ID of your flow from my Id to yours (from the browser address bar):


Your flow has a SharePoint trigger "For a selected item".
I will look at the syntax to only show the button if today's date is later than the due date. But for the moment that will get you going and is the only solution I can see if a recurrence trigger can't be used.
Rob
Los Gallardos
If I've answered your question or solved your problem, please mark this question as answered. This helps others who have the same question find a solution quickly via the forum search. If you liked my response, please consider giving it a thumbs up. Thanks.