Multiple Feed Emails
Create automated emails that incorporates content from multiple RSS feeds.
###Display 1 post from RSS Feed 1###
[% for post in feedotter.posts | slice(0,1) %]
[[post.post_title]] - [[post.post_url]]
[% endfor %]
###Display 3 posts from RSS Feed 2###
[% for post in feedotter.posts2 | slice(0,3) %]
[[post.post_title]] - [[post.post_url]]
[% endfor %]###Combined Posts From All Feeds. De-duped and sorted by Published Date###
[% for post in feedMerge([feedotter.posts, feedotter.posts2]) %]
[[post.post_date | date("n/j/Y")]] == [[post.post_title]]
[[post.post_url]]
###
[% endfor %]Considerations
Automated Email Triggering Considerations
Displaying new content vs. any content
Example Including Pardot Conditionals
Last updated
