Re: Email to be sent when SharePoint list item hasn't been modified for 48 hours
Hi @Sam12,
You could create a Recurrence Flow follow these steps.
1. Create a recurrence trigger runs every hour.
2. Get the items on the list.
3. Use dayOfWeek() function to get the number of Created Dates.
-if the number is 4 (Thursday) or 5 (Friday), perform condition -96 hours;
-if not, perform condition -48 hours;
4. Perform the condition -96 hours, if the Assigned to is null (or you can use the length() function, length(item?['AssignedTo']) is equal to 0) and Created (date) is less than addHours(utcNow(), -96), send the notification email to creator.
5. Condition -48 hours is the same as the previous step.

Condition -96 hours:

Condition -48 hours:
Please have a try, I hope it can help you.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.