Re: Sending a weekly file from a SharePoint list
Hi @Anonymous,
Could you please share a screenshot of your flow's configuration?
I have made a test on my side based on the article that you provided and the issue is confirmed on my side. But you could consider take a try with the following workaround as an alternative solution:
- Add a Recurrence trigger, Interval set to 1 and Frequency set to Day.
- Add a Compose action, Inputs field set to following formula:
utcNow()
- Add a "Get items" action, specify Site Address and List Name.
- Add a "Create HTML table" action, From set to output of "Get items" action, Include Headers set to Yes and Columns set to Custom. Within Header-Value map entry, type the following entries:
- Add a Parallel branch action. Within left branch, add a "Create file" action, specify Folder Path. File Name set to Tweets.doc and File Content set to output of "Create HTML table" action.
Within right branch, add a "When a file is created" trigger of OneDrive for Business connector, Folder field set to the folder that you specified within "Create file" action (left branch). Add a "Create share link by path" action, File Path field set to File path dynamic content of the "When a file is created" trigger, Link type set to Direct and Link scope set to Organization. Then add a "Send an email" action, Body field set to Web URL Dynamic content of the "Create share link by path" action.
Image reference:

The flow works successfully as below:

More details about adding parallel branch action, please check the following article:
https://flow.microsoft.com/en-us/blog/parallel-actions/
Best regards,
Kris