Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from this space and version 9.2

MailUp allows creating content sources that, automatically and on a regular basis, retrieve external content and make it available into the platform. This content can be used to create automated Campaigns or directly in the drag&drop editor while creating a new message.

...

Info

In the Edit page, you are able to stop Source update. If you stop the update, any automated campaigns generated from this source will not be sent.

 

What content does MailUp look for?

...

Note
iconfalse
titleHow to build an RSS feed

The content retrieved are:

 

  • Title: item -> title
  • Summary: item -> description
  • Image: first image item -> description or item -> content:encoded or channel -> image-url
  • LinkURL: item -> link
  • LinkText: item -> title
  • ContentDate: item -> pubDate
  • ContentKey: item -> guid

 

  • Category: item -> category

 

Code Block
languagexml
titleExample of RSS feed
<item>
 <title>Does summer make open rates drop? 5 ideas to avoid it</title>
 <link>https://blog.mailup.com/2018/07/summer-email/</link>
 <comments>https://blog.mailup.com/2018/07/summer-email/#respond</comments>
 <pubDate>Tue, 17 Jul 2018 09:59:13 +0000</pubDate>
 <dc:creator><![CDATA[MariaJohn Giulia GanassiniDoe]]></dc:creator>
 <category><![CDATA[Email Marketing]]></category>
 <category><![CDATA[Summer]]></category>
 <guid isPermaLink="false">https://blog.mailup.com/?p=6121</guid>
 <description><![CDATA[<p>Summer is a beautiful season and many businesses are slowing down the performance of their summer emails. There are effective remedies to prevent these declines. Let us discover them together.</p>
<p>The post <a rel="nofollow" href="https://blog.mailup.com/2018/07/summer-email/">Does summer make open rates drop? 5 ideas to avoid it</a> appeared first on <a rel="nofollow" href="https://blog.mailup.com">MailUp Blog</a>.</p>
]]></description>
 </content:encoded>
 <wfw:commentRss>https://blog.mailup.com/2018/07/summer-email/feed/</wfw:commentRss>
 <slash:comments>0</slash:comments>
</item>

 

Final output:

MailUp blog feed (RSS): https://blog.mailup.com/feed/

...