Automate Weekly Newsletter

Last week the blog was to automate the Microsoft RSS feed. This week the concept is same but the power automate flow is simplified and the RSS feed that is automated is with security podcast SmashingSecurity

Implementation:

Collection of …


This content originally appeared on DEV Community and was authored by Bala Madhusoodhanan

Last week the blog was to automate the Microsoft RSS feed. This week the concept is same but the power automate flow is simplified and the RSS feed that is automated is with security podcast SmashingSecurity

Implementation:

  • Collection of data: The RSS connector would enable you to get a JSON data which we would manipulate in the following steps

Image description

  • Condition: Instead of leveraging filter array, condition is leveraged to pull the needed content. We will Parse the Publish Date field from the RSS feed leveraging function as below. Grabbing the last published feed would be using the [0] index and the object is ['publishDate']
body('List_all_RSS_feed_items')[0]?['publishDate']

Compare the latest publishDate and validated if its published in the last 7 days.

addDays(utcNow(),-7)

Image description

  1. Yes - If the condition above is satisfied , post the message in a Microsoft TEAMS channel

Image description

  1. If the condition is not met then no action
  • Email Composition Mapping the Subject of email as the RSS feed title
body('List_all_RSS_feed_items')[0]?['title']

The simplified PowerAutomate flow would be

Image description

The result !! automated the PodCast summary as a weekly newsletter to the team to learn and enrich the knowledge ....

Image description


This content originally appeared on DEV Community and was authored by Bala Madhusoodhanan


Print Share Comment Cite Upload Translate Updates
APA

Bala Madhusoodhanan | Sciencx (2023-04-25T14:05:10+00:00) Automate Weekly Newsletter. Retrieved from https://www.scien.cx/2023/04/25/automate-weekly-newsletter/

MLA
" » Automate Weekly Newsletter." Bala Madhusoodhanan | Sciencx - Tuesday April 25, 2023, https://www.scien.cx/2023/04/25/automate-weekly-newsletter/
HARVARD
Bala Madhusoodhanan | Sciencx Tuesday April 25, 2023 » Automate Weekly Newsletter., viewed ,<https://www.scien.cx/2023/04/25/automate-weekly-newsletter/>
VANCOUVER
Bala Madhusoodhanan | Sciencx - » Automate Weekly Newsletter. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2023/04/25/automate-weekly-newsletter/
CHICAGO
" » Automate Weekly Newsletter." Bala Madhusoodhanan | Sciencx - Accessed . https://www.scien.cx/2023/04/25/automate-weekly-newsletter/
IEEE
" » Automate Weekly Newsletter." Bala Madhusoodhanan | Sciencx [Online]. Available: https://www.scien.cx/2023/04/25/automate-weekly-newsletter/. [Accessed: ]
rf:citation
» Automate Weekly Newsletter | Bala Madhusoodhanan | Sciencx | https://www.scien.cx/2023/04/25/automate-weekly-newsletter/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.