cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Oos
Advocate V
Advocate V

Weekly sharepoint news digest

We're using te sharepoint news webpart for all our news inside the company.
is it possible to send a news digest weekly? It is already possible with a trigger in SharePoint, but i cant find one in Flow. 

(https://support.office.com/en-us/article/create-and-send-a-news-digest-42efc3c6-605f-4a9a-85d5-1f9ff...)


22 REPLIES 22
v-bacao-msft
Community Support
Community Support

Hi @Oos,

 

MS Flow does not support features -"Send a news digest" currently.

I am afraid we can't achieve your needs at this time.

If you want to function that you mentioned to be supported in Microsoft Flow, please submit an idea to Flow Ideas Forum:

https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
RobElliott
Super User
Super User

 Hi @Oos, there isn't an already-built template for this but you can still create a Flow to send a weekly digest of News created by the News web part in SharePoint to produce something like this:

15-emailResult.jpg

 

The full list of actions is shown below and then I'll talk through each one:

0-FlowSteps.jpg 

1. SharePoint saves the news from the News web part in Site Pages, but you will probably have a lot of other pages there as well so you need to add a new column to show which pages are news and should therefore be included in the weekly digest. I created a called called PageType and set the default value to News - in normal work you might be creating more news pages than other types.

 

0-PageType.jpg

 

2. You want the flow to run once a week so in Flow create a recurrence schedule and set the details for when it will run:

1-Recurrence.jpg

 

3. The next step is to get the items from SharePoint. Select the site then type Site Pages in the List Name (it won't show up by default so you need to type it in as a custom entry). To speed up the processing of the flow once you have a lot of pages, set the filter query so that the only items that returned are those pages created in the last 7 days that have a PageType of News. The query filter should have the syntax Created gt  then an apostrophe ' then enter an expression using the syntax below and close it out with another apostrophe ' and PageType eq 'News'

 

adddays(utcNow(),-7)

2-GetItems.jpg

 

4. We then want to initialize 2 string variables to capture the page name of the news item and the text content. the value empty:

3-varName.jpg

 

 

3-varName.jpg

 

5. Initialize an Array variable which will be used to initially hold each item that will go in the table:5-varTable.jpg

 

 

6. The next step is to add an Apply to each and from the Dynamic Content box select Value. Then add 2 Append to string variables, one for the name and one for the description (remember, you initialized them earlier) and from the Dynamic Content box add the name and Description columns from your SharePoint Site pages document library.

 

8-appendtostringvariables.jpg

 

7. At this point I decided to add a step to convert UTC into British dd/MM/yy format so that the email shows the correct format, so you might not need this step.

10-convertTimeZone.jpg

 

8. The next step is to add an Append to array variable which will hold each string variable and the converted date.  You'll see that what will ho into the email is written in JSON. I'm not an expert on that so I'm sure others can add to this very basic example. Start with an open curly parenthesis (brackets), on the next line put "Published": inside punctuation marks, then add the Converted time from the Dynamic Content box and add a comma , before going to the next line and doing the same but this time using the varName variable you initialized and appended to earlier and after another comma , before doing the same for the Description line. As this is the last line there is no comma before you go to the next line and add curly closing parenthesis (brackets). So it should look like this:

11-Appendtoarrayvariable.jpg 

9. Unless you clear the string variables at this stage it will keep appending them so add 2 Set variables and you can select the Name you created earlier from the dropdown, and set them to an expression of null.

12-setVariablestoNull.jpg

10. We're almost there. You now need to add a Create HTML Table control and in the From box choose from the Dynamic Content box your array variable that you formatted in step 8.

 

 

13-createHtmlTable.jpg

 

11. The final step is to create your email and add from the Dynamic Content box the Output from the Create HTML Table control. You can then add any other thins you want on the email. I've just added a link back to the intranet.

14-sendAnEmail.jpg

 

 

In your final version you will probably want to add more controls about who the email will go to. 
Shortly I will be looking at whether it's possible to improve the formatting of the final table which will no doubt need more complex JSON code, ad I'd also like to include a thumbnail image for each item but I haven't investigated this yet.

 

I hope this is useful for you.

 

Rob

RobElliott
Super User
Super User

 Hi @Oos, there isn't an already-built template for this but you can still create a Flow to send a weekly digest of News created by the News web part in SharePoint to produce something like this:

15-emailResult.jpg

 

The full list of actions is shown below and then I'll talk through each one:

0-FlowSteps.jpg 

1. SharePoint saves the news from the News web part in Site Pages, but you will probably have a lot of other pages there as well so you need to add a new column to show which pages are news and should therefore be included in the weekly digest. I created a called called PageType and set the default value to News - in normal work you might be creating more news pages than other types.

 

0-PageType.jpg

 

2. You want the flow to run once a week so in Flow create a recurrence schedule and set the details for when it will run:

1-Recurrence.jpg

 

3. The next step is to get the items from SharePoint. Select the site then type Site Pages in the List Name (it won't show up by default so you need to type it in as a custom entry). To speed up the processing of the flow once you have a lot of pages, set the filter query so that the only items that returned are those pages created in the last 7 days that have a PageType of News. The query filter should have the syntax Created gt  then an apostrophe ' then enter an expression using the syntax below and close it out with another apostrophe ' and PageType eq 'News'

 

adddays(utcNow(),-7)

2-GetItems.jpg

 

4. We then want to initialize 2 string variables to capture the page name of the news item and the text content. the value empty:

3-varName.jpg

 

 

3-varName.jpg

 

5. Initialize an Array variable which will be used to initially hold each item that will go in the table:5-varTable.jpg

 

 

6. The next step is to add an Apply to each and from the Dynamic Content box select Value. Then add 2 Append to string variables, one for the name and one for the description (remember, you initialized them earlier) and from the Dynamic Content box add the name and Description columns from your SharePoint Site pages document library.

 

8-appendtostringvariables.jpg

 

7. At this point I decided to add a step to convert UTC into British dd/MM/yy format so that the email shows the correct format, so you might not need this step.

10-convertTimeZone.jpg

 

8. The next step is to add an Append to array variable which will hold each string variable and the converted date.  You'll see that what will ho into the email is written in JSON. I'm not an expert on that so I'm sure others can add to this very basic example. Start with an open curly parenthesis (brackets), on the next line put "Published": inside punctuation marks, then add the Converted time from the Dynamic Content box and add a comma , before going to the next line and doing the same but this time using the varName variable you initialized and appended to earlier and after another comma , before doing the same for the Description line. As this is the last line there is no comma before you go to the next line and add curly closing parenthesis (brackets). So it should look like this:

11-Appendtoarrayvariable.jpg 

9. Unless you clear the string variables at this stage it will keep appending them so add 2 Set variables and you can select the Name you created earlier from the dropdown, and set them to an expression of null.

12-setVariablestoNull.jpg

10. We're almost there. You now need to add a Create HTML Table control and in the From box choose from the Dynamic Content box your array variable that you formatted in step 8.

 

 

13-createHtmlTable.jpg

 

11. The final step is to create your email and add from the Dynamic Content box the Output from the Create HTML Table control. You can then add any other thins you want on the email. I've just added a link back to the intranet.

14-sendAnEmail.jpg

 

 

In your final version you will probably want to add more controls about who the email will go to. 
Shortly I will be looking at whether it's possible to improve the formatting of the final table which will no doubt need more complex JSON code, ad I'd also like to include a thumbnail image for each item but I haven't investigated this yet.

 

I hope this is useful for you.

 

Rob

Thanks for your workaround. Unfortunately, this workaround is without the news images and has a different layout than the original

I made a Flow Idea. You can vote here: https://powerusers.microsoft.com/t5/Flow-Ideas/Automate-sharepoint-news-digest-weekly/idi-p/194140

Ah right, I see what you mean. Good idea, I've voted.

Rob
Los Gallardos

Hi 

Is this still correct - no Flow connector to SPO news digest yet? 

We are wanting the ability to change the 'sender' of the news digest, so the sender shown in the email is not the person who sent the news digest. I was wonderig if this could be achieved via Flow. 

 

Also, the solution presented in this thread appears to send all news items from a web part, so it does not have the same functionality of letting the sender select which news items to send..

Hey Rob, I found this super useful. I know it's been way over a year since you've posted this super useful flow, worked like butter for me. I was wondering, did you get to figure how to get those images to show as opposed to the link?
Format the News Digest with fonts, spacing , etc?
Thanks again.

@MikeRooker I didn't turn my attention back to it, but it's certainly possible to format the table and I'll post up about this and the images as soon as possible.

Rob
Los Gallardos

Thanks so much @RobElliott 

I'm really surprised that MS had not presented a way to at least make their New Digest customizable.
At least letting us remove their logos on top so that the Clients can feel that their News is "theirs" by only having their branding.

Hi @RobElliott :

 

These steps were very helpful in getting an automated weekly digest started for news on my agency's SharePoint page. Did you ever figure out how to add an article's thumbnail (and perhaps URL) to the table in the body of the email? 

 

Thanks for any help you can provide! 

Hi Rob,

 

Thanks for sharing this Flow it's been really useful. I know this was published a while ago, but do you know if it's possible to integrate an article's thumbnail image into the HTML table?

jcollins
Advocate II
Advocate II

 @RobElliott   @Oos  This works great for me, except one caveat: The Description field is only populated when I use the Default Blank News template.  If I use any template that I've created myself, it doesn't fill the Description field with any text,  just the Authoring Canvas Content field, but that isn't discoverable in PA to select.  Any tips in this case? Has anyone else found this to be true? Maybe I just need to find a way to make my templates populate the Description field?
  Thanks, Joe

@Toby958  You should be able to use the "Banner Image URL" dynamic property field in PA to show the image. For me though it only shows the image in OWA but not the desktop OL

Hi Rob.

Did you manage to figure this out, yet? 🙂

I don't see the Site Pages in the Get Items block.

I only see Lists that I've created.

 

mobilismexico_0-1659759189564.png

 

@mobilismexico it won't put it into the dropdown as it's a library, not a list. YOu need to add it as a custom value in the dropdown.

 

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.

I missed the part in the main post that said exactly that: manually type "Site Pages". Thanks for reiterating it. Sorry.

On a separate issue, is the string variable limited to 250 characters only? 

 

My digest comes out truncated to that many characters per row.

Adela_Dolezalov
Regular Visitor

Hi, I add "Site Pages" as a custom value and I am not able to add the name and the rest dynamic content from the step "Get file". Is it possible to get dynamic content from "Get file" step only for Team site, not for Communication site? On both Communication sites, I am the owner.

Helpful resources

Announcements

Power Platform Connections - Episode 6 | March 23, 2023

Episode Six of Power Platform Connections sees David Warner and Hugo Bernier talk to talk to Business Applications MVP Shane Young, alongside the latest news, product updates, and community blogs.    Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!        Show schedule in this episode:  0:00 Cold Open 00:24 Show Intro 01:02 Shane Young Interview 22:00 Blogs & Articles 22:20 Integrate FullCalendar.io with Power Pages 23:50 Text Data 25:15 Zero to Hero Power Apps Saga 25:44 Parent Hub Association 26:33 Using Custom Values for OneNote Power Automate References​ 28:04 ​Dynamics Power Israel 28:44 Create Beautiful Canvas Apps in Dataverse for Teams ​ 30:36 Outro & Bloopers  Check out the blogs and articles featured in this week’s episode:   https://francomusso.com/integrate-fullcalendar-io-with-power-pages-from-json-basics-to-advanced-outp... @crmbizcoach https://yerawizardcat.com/text/ @YerAWizardCat www.fromzerotoheroes.com/mentorship ​ @thevictordantas https://www.expiscornovus.com/2023/03/16/parent-hub-association/ ​ @Expiscornovus https://lindsaytshelton.com/2023/03/15/the-painful-process-of-custom-values-for-onenote-power-automa... @lshelton_Tech https://never-stop-learning.de/create-beautiful-canvas-apps-in-dataverse-for-teams/ @MMe2K    Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiered live on our YouTube at 12pm PST on Thursday 23rd March 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.   

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.    Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash   ScottShearer     Rusk   ChristianAbata     cchannon   Koen5     a33ik        AaronKnox        Matren        Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg     rubin_boer     cwebb365       If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Microsoft Power Platform | March 2023 Newsletter

Welcome to our March 2023 Newsletter, where we'll be highlighting the great work of our members within our Biz Apps communities, alongside the latest news, video releases, and upcoming events. If you're new to the community, be sure to subscribe to the News & Announcements and stay up to date with the latest news from our ever-growing membership network who find real "Power in the Community".        LATEST NEWS Power Platform Connections Check out Episode Five of Power Platform Connections, as David Warner II and Hugo Bernier chat with #PowerAutomate Vice President, Stephen Siciliano, alongside reviewing out the great work of Vesa Juvonen, Waldek Mastykarz, Maximilian Müller, Kristine Kolodziejski, Danish Naglekar, Cat Schneider, Victor Dantas, and many more.       Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!   Did you miss an episode?  Catch up now in the Community Connections Galleries Power Apps, Power Automate, Power Virtual Agents, Power Pages     Power Platform leading a new era of AI-generated low-code development.   **HOT OFF THE PRESS** Fantastic piece here by Charles Lamanna on how we're reinventing software development with Copilot in Power Platform to help you can build apps, flows, and bots with just a simple description! Click here to see the Product Blog         Copilot for Power Apps - Power CAT Live To follow on from Charles' blog, check out #PowerCATLive as Phil Topness gives Clay Wesener Wesner a tour of the capabilities of Copilot in Power Apps.           UPCOMING EVENTS   Modern Workplace Conference Check out the Power Platform and Microsoft 365 Modern Workplace Conference that returns face-to-face at the Espace St Martin in Paris on 27-28th March. The #MWCP23 will feature a wide range of expert speakers, including Nadia Yahiaoui, Amanda Sterner, Pierre-Henri, Chirag Patel, Chris Hoard, Edyta Gorzoń, Erika Beaumier, Estelle Auberix, Femke Cornelissen, Frank POIREAU, Gaëlle Moreau, Gilles Pommier, Ilya Fainberg, Julie Ecolivet, Mai-Lynn Lien, Marijn Somers, Merethe Stave, Nikki Chapple, Patrick Guimonet, Penda Sow, Pieter Op De Beéck, Rémi Riche, Robin Doudoux, Stéphanie Delcroix, Yves Habersaat and many more.  Click here to find out more and register today!     Business Applications Launch 2023 Join us on Tuesday 4th April 2023 for an in-depth look into the latest updates across Microsoft Power Platform and Microsoft Dynamics 365 that are helping businesses overcome their biggest challenges today. Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating and creating using AI-powered capabilities, driving productivity with automation, and building future growth with today’s leading technology. Click Here to Register Today!       Power Platform Conference 2023 We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5th, 2023! But first, let's take a look below at some fun moments from MPPC 2022 in Orlando Florida. 2023 sees guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, and many more taking part, so why not click the link below to register for the #PowerPlatformConf today! Vegas, baby! Click Here to Register Today!      COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels!  These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities.   Power Apps:  Super Users:  @WarrenBelz  |  @iAm_ManCat  Community Users: @LaurensM | @Rusk | @RJM07    Power Automate:   Super Users: @abm  | @Expiscornovus | @RobElliott  Community Users:  @grantjenkins | @Chriddle    Power Virtual Agents:   Super Users: @Expiscornovus | @Pstork1  Community Users: @MisterBates | @Jupyter123 | Kunal K   Power Pages: Super Users:  @OliverRodriguesOliverRodrigues | @Mira_Ghaly  Community Users: @FubarFubar | @ianwukianwuk  LATEST PRODUCT BLOG ARTICLES  Power Apps Community Blog  Power Automate Community Blog  Power Virtual Agents Community Blog  Power Pages Community Blog  Check out 'Using the Community' for more helpful tips and information:  Power Apps, Power Automate, Power Virtual Agents, Power Pages 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (5,063)