How to get new RSS item?

Welcome to the community!
Yes, the node simply returns all the items it finds. The filtering out of already processed items has to be done manually. That means you have to save the date of the last processed item and then remove all the ones before that date. It is possible to save that value in multiple ways, the easiest is with the static data. Here an example workflow:

It is, however, important to remember that the static data does not get read and written when testing via the Editor-UI. So every time you test it will use the in the node defined default date and will to always return all items. If you then, however, activate the workflow it will work like intended. You can test that easily by setting the cron-time to something short like 1 minute. You will then see that the first time it runs it will send an email with all items and the second run, it will not send an email at all (unless by accident a new item gets added in the meantime).

4 Likes