<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Two RSS Feed in a RSS Feed email in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/396287#M20296</link>
    <description>&lt;P&gt;It appears that this is just partial code to setup the RSS feed link.&amp;nbsp; How do I setup the rest of it?&amp;nbsp; With the RSS link, custom image, and formatting the same way I have it in my email?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 02 Jan 2021 19:32:35 GMT</pubDate>
    <dc:creator>dabroncos</dc:creator>
    <dc:date>2021-01-02T19:32:35Z</dc:date>
    <item>
      <title>Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/33721#M3261</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know if there is an option to put two RSS Feed in an RSS Feed email if it´s possible to have two columns it will be awesome...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 16:05:46 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/33721#M3261</guid>
      <dc:creator>ThibautMX</dc:creator>
      <dc:date>2017-10-13T16:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/33801#M3269</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/15207"&gt;@ThibautMX&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Sorry, my original post was for someone else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes this is possible. I always suggest using HubL functions for RSS feeds because they allow for more control.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if it is two feed for 2 different blogs:&lt;/P&gt;&lt;PRE&gt;{% set rec_posts = blog_recent_posts('blog 1', 5) %}
{% for rec_post in rec_posts %}
    &amp;lt;div class="post-title"&amp;gt;{{ rec_post.name }}&amp;lt;/div&amp;gt;
{% endfor %}

{% set rec_posts = blog_recent_posts('blog 2', 5) %}
{% for rec_post in rec_posts %}
    &amp;lt;div class="post-title"&amp;gt;{{ rec_post.name }}&amp;lt;/div&amp;gt;
{% endfor %}&lt;/PRE&gt;&lt;P&gt;where blog 1 and blog 2 represent the blog id for 2 different blogs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for the same blog but two different topics:&lt;/P&gt;&lt;PRE&gt;{% set topic_posts = blog_recent_topic_posts('default', 'topic 1', 5) %}
{% for topic_post in topic_posts %}
    &amp;lt;div class="post-title"&amp;gt;{{ topic_post.name }}&amp;lt;/div&amp;gt;
{% endfor %}

{% set topic_posts = blog_recent_topic_posts('default', 'topic 2', 5) %}
{% for topic_post in topic_posts %}
    &amp;lt;div class="post-title"&amp;gt;{{ topic_post.name }}&amp;lt;/div&amp;gt;
{% endfor %}&lt;/PRE&gt;&lt;P&gt;Where topic 1 and topic 2 represent 2 different but available topics from your default blog&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in both of these examples the 2 functions work independently. you can put them each in their own or custom html modules.&amp;nbsp; Edit the html in the for loops to be structured how you would like it to appear in the email, and style with inline css or css in the head of your email.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2017 12:28:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/33801#M3269</guid>
      <dc:creator>Jsum</dc:creator>
      <dc:date>2017-10-15T12:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/178976#M4799</link>
      <description>&lt;P&gt;I am wondering if I am looking in the right place here. I just want to show the most recent post per category, for two categories in each email template for hubspot, coming from wordpress. This seems like one of those ultra simple things where there is just no explanation for.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.kloecknermetals.com/category/news/category/blog/feed/" target="_blank"&gt;https://www.kloecknermetals.com/category/news/category/blog/feed/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my WP url for RSS Feeds I want to display. Right now my email remplate is showing just the two most recent from both blogs, but I need the most recent one, one from each blog category.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 21:49:36 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/178976#M4799</guid>
      <dc:creator>pixelparlordev</dc:creator>
      <dc:date>2018-02-20T21:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/194601#M6462</link>
      <description>&lt;P&gt;I'm assuming this solution only works for native Hubspot blogs, not for external ones?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 15:27:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/194601#M6462</guid>
      <dc:creator>BenMartinCURE</dc:creator>
      <dc:date>2018-06-20T15:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/249694#M10801</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/3688"&gt;@Jsum&lt;/a&gt;&amp;nbsp;Do you think you could help me set this up? I have no idea when it comes to custom coding or where to do it at. I am a marketing team of 1...&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 22:03:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/249694#M10801</guid>
      <dc:creator>robertrunyon</dc:creator>
      <dc:date>2019-01-30T22:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/249918#M10811</link>
      <description>&lt;P&gt;I used&amp;nbsp;&lt;A href="http://www.rssmix.com" target="_blank"&gt;http://www.rssmix.com&lt;/A&gt; to accomplish this. It will take multiple RSS feeds and give you one feed URL to use in your Hubspot email.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 18:44:11 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/249918#M10811</guid>
      <dc:creator>BenMartinCURE</dc:creator>
      <dc:date>2019-01-31T18:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/249921#M10813</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/60627"&gt;@BenMartinCURE&lt;/a&gt;&amp;nbsp;would you have time to do a screen share to go over this in a little more detail? Perhaps tomorrow or next week sometime?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 18:54:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/249921#M10813</guid>
      <dc:creator>robertrunyon</dc:creator>
      <dc:date>2019-01-31T18:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/250005#M10815</link>
      <description>&lt;P&gt;It works with external blogs/content too.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 00:46:46 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/250005#M10815</guid>
      <dc:creator>suryast</dc:creator>
      <dc:date>2019-02-01T00:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/250619#M10854</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/71962"&gt;@robertrunyon&lt;/a&gt;&amp;nbsp;yes, happy to. Email me direct at ben.martin@cure.org.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 21:59:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/250619#M10854</guid>
      <dc:creator>BenMartinCURE</dc:creator>
      <dc:date>2019-02-04T21:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/251417#M10912</link>
      <description>&lt;P&gt;I just want anyone that reads this to know that&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/60627"&gt;@BenMartinCURE&lt;/a&gt;&amp;nbsp;is outstanding! He is very articulate and tries to understand what you are trying to do! He helped me solve the issue in no time flat, and provided me with enough explanation that I could help someone with this if they need any additional help! In the event, Ben or anyone else is not able to help, please feel free to reach out to me.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 17:38:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/251417#M10912</guid>
      <dc:creator>robertrunyon</dc:creator>
      <dc:date>2019-02-07T17:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/260521#M11567</link>
      <description>&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/60627" target="_blank"&gt;@BenMartinCURE&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;or&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/71962"&gt;@robertrunyon&lt;/a&gt;&amp;nbsp;was so glad to see this thread! Would either of you possibly have any time do a screenshare&amp;nbsp;today or tomorrow to discus in greater detail?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 15:14:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/260521#M11567</guid>
      <dc:creator>Heidi1</dc:creator>
      <dc:date>2019-03-21T15:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/260529#M11568</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/88435"&gt;@Heidi1&lt;/a&gt;&amp;nbsp;I can help you later this afternoon. How does 3:00 EST sound?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 15:36:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/260529#M11568</guid>
      <dc:creator>robertrunyon</dc:creator>
      <dc:date>2019-03-21T15:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/260533#M11569</link>
      <description>&lt;P&gt;That's perfect! Thank you. My email address is HeidiAllums3@gmail.com.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 15:41:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/260533#M11569</guid>
      <dc:creator>Heidi1</dc:creator>
      <dc:date>2019-03-21T15:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274213#M12543</link>
      <description>&lt;P&gt;Apologies for dragging this up again, but is there a way to have this work for external RSS feeds? Or is this only available for Hubspot Native Blogs&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 18:10:31 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274213#M12543</guid>
      <dc:creator>edgehomes</dc:creator>
      <dc:date>2019-06-07T18:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274220#M12544</link>
      <description>&lt;P&gt;The ony solution I've found for this is to use another service to combine those external feeds into one feed. I use rssmix.com for this. It's free.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2019 18:30:59 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274220#M12544</guid>
      <dc:creator>BenMartinCURE</dc:creator>
      <dc:date>2019-06-07T18:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274254#M12546</link>
      <description>&lt;P&gt;- see &lt;A href="https://community.hubspot.com/t5/CMS-Development/Blended-RSS-feed-Email/m-p/202647/highlight/true#M7671" target="_blank" rel="noopener"&gt;Blended RSS Feed Email&lt;/A&gt; for step-by-step&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2019 16:16:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274254#M12546</guid>
      <dc:creator>MFrankJohnson</dc:creator>
      <dc:date>2019-09-08T16:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274526#M12567</link>
      <description>&lt;P&gt;It works for external RSS feeds too as long as the format of your external feeds is correct. RSS XML format is very loose, so it's easy to make a mistake and see no error. Also, every web app digests RSS feeds differently. If it doesn't work you, you probably need to tweak your external RSS feeds further.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2019 13:54:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/274526#M12567</guid>
      <dc:creator>suryast</dc:creator>
      <dc:date>2019-06-11T13:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/396287#M20296</link>
      <description>&lt;P&gt;It appears that this is just partial code to setup the RSS feed link.&amp;nbsp; How do I setup the rest of it?&amp;nbsp; With the RSS link, custom image, and formatting the same way I have it in my email?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jan 2021 19:32:35 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/396287#M20296</guid>
      <dc:creator>dabroncos</dc:creator>
      <dc:date>2021-01-02T19:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/474621#M24400</link>
      <description>&lt;P&gt;For the first example, how would i get the blog ID for two different blogs?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 16:25:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/474621#M24400</guid>
      <dc:creator>NadiraFant</dc:creator>
      <dc:date>2021-08-06T16:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Two RSS Feed in a RSS Feed email</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/655379#M29211</link>
      <description>&lt;P&gt;Can you provide code that works with external blogs? I have read through the documentation and there doesn't seem to be a way to provide an external blog url.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 23:22:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Two-RSS-Feed-in-a-RSS-Feed-email/m-p/655379#M29211</guid>
      <dc:creator>Jmdev</dc:creator>
      <dc:date>2022-06-24T23:22:00Z</dc:date>
    </item>
  </channel>
</rss>

