LogoLogo
HomepageDocumentationGet FeedOtter
  • Welcome to FeedOtter
  • Automated Newsletters
    • Getting Started
      • Marketo Sending
      • Pardot Sending
      • Eloqua Sending
      • SFMC Sending
      • HubSpot Sending
      • MailChimp Sending
      • Active Campaign Sending
    • Scheduling Your Send
      • Require New Content to Send
      • Intervals
    • Features
      • Last Send Date
      • Send Now
      • Sending History
      • UTM Parameters
      • Custom Subject Lines
      • Notifications
      • Multiple Feeds
        • Merging Feeds
        • Pulling in External JSON/XML Data
  • Curated Newsletters
    • Getting Started
      • Newsletter Defaults
      • Adding Content Sources
      • Create your first curated issue
      • Test, Review, and Publish your curated email newsletter
    • Publishing
      • Publishing to Marketo
        • Create a New Email Program and Email
        • Create a New Email in Marketo
        • Schedule an Email Program Send From the FeedOtter Interface
      • Publishing to Pardot
      • Publishing to Eloqua
        • Create a New Email and Schedule a Send
        • Create a New Email
        • Update an Existing Email
        • Issue Naming
      • Publishing to HubSpot
      • Publishing to MailChimp
      • Publishing to HTML
    • Tags
    • Bookmarking Content
    • Content Sources
      • Google Sheets
      • YouTube
      • Algolia
      • WordPress API
      • UberFlip
      • JSON / XML API
        • Custom Data Fields
    • Troubleshooting
      • Marketo Duplicate Object Naming
      • Marketo Emoji Support
      • MailChimp From Address
      • Pardot emails are missing a required Unsubscribe or Preference Center tag
  • Integrations
    • Getting Started
    • Marketo
      • How to Set Up Your Marketo Integration
      • FAQ
        • Email Reporting
        • Sending in Recipient Time Zone
        • Marketo Data Access
        • Custom Marketo Program Naming
        • Branded Domain and IP Settings
      • Troubleshooting
        • How do I reset my Marketo Automated Campaign
        • Marketo Error: Program with the same name exists
        • Marketo error: Daily quota '50000'
        • Marketo Error: Invalid request. Please check and try again.
        • Curated Issue Fails to Publish
          • FeedOtter Can Not Approve Marketo Template
          • Marketo rejects Duplicate Name
      • Exporting a FeedOtter email into Marketo
    • Pardot / Account Engagement
      • How to Set Up Your Pardot Integration
      • FAQ
        • Salesforce IP Whitelisting
        • Where Can I Find My Pardot Business Unit ID?
        • Pardot Data Access
        • Advanced Settings
          • Set Up a User for Integration
      • Troubleshooting
    • Eloqua
      • How to Set Up Your Eloqua Integration
      • FAQ
        • Custom Email and Campaign Naming
        • Custom Field Setup
        • Updating Eloqua Canvas Email
        • Eloqua Data Access
        • VMTA and BBE
    • Salesforce Marketing Cloud
      • How to Set Up Your SFMC Integration
      • FAQ
        • SFMC Tracking Code
        • SFMC Resources and Links
      • Troubleshooting
    • HubSpot
      • How to Set Up Your HubSpot Integration
      • FAQ
      • Manually publish an email to HubSpot
    • MailChimp
      • How to Set Up Your MailChimp Integration
    • ActiveCampaign
      • How to Set Up Your ActiveCampaign Integration
    • Microsoft Dynamics Marketing
      • How to Set Up Your MS Dynamics Integration
  • Email Templates
    • Getting Started
      • Custom Template
        • HTML Email Guidelines
          • In-Depth HTML Email Guidelines
        • Custom Template Resources
          • ESP Template Use
            • Export a Marketo Template for Use in FeedOtter
            • Export a Pardot Template for Use in FeedOtter
            • Export a HubSpot Template for Use in FeedOtter
            • Export an ActiveCampaign Template for Use in FeedOtter
        • Where to Access Template Code
        • Getting Started with FeedOtter Templates
          • Creating a Basic Email Template
          • Advanced Email Templates
            • Slicing loops
            • Multiple Feed Emails
            • Email With Columns
            • Conditionals
            • Filters
              • Image Resize Filter
              • Date Formatting Filter
              • Text Manipulation Filters
              • Other Handy Filters
            • Non-RSS XML values
            • Custom fields
            • Display a Full Article in Your Email
          • Curated Email Setup Best Practices
            • Curated Newsletter Sections
      • Element Customization
        • About Email Images
    • FeedOtter Tokens
    • ESP-Specific Tokens
      • Marketo Tokens
        • Using Marketo Tokens in the From and Reply-To
      • Pardot Tokens
        • Pardot Merge Token Reference
      • Eloqua Tokens
      • SFMC Tokens
      • HubSpot Tokens
      • MailChimp Tokens
      • ActiveCampaign Tokens
  • Account Management
    • Account Information
    • Company Details
    • Manage Users
      • Adding Users
      • User Roles
      • Campaign Permissions
      • Transfer Ownership
      • Disabling Users
    • Security
      • Enable SSO in Your Account
        • Enable SSO With Okta as the Identity Provider
        • Enable SSO with a Generic Identity Provider
        • Enable SSO with Azure AD as the Identity Provider
        • Enable SSO with OneLogin as the Identity Provider
      • Account Level 2FA
    • Billing
      • Update Your Payment Card
      • View Account Usage
      • View Receipts
      • Change Your Subscription Plan
  • FAQ
    • How to manually publish a curated newsletter
    • WordPress RSS Feed Reference
    • How to find your RSS feed
    • Help with HTML encoding
    • My automated email did not send as expected
    • How do I hard refresh my browser?
    • How to Remove "This Post First Appeared" from Your Blog's RSS Feed in WordPress
    • Whitelisting FeedOtter
    • Whitelist FeedOtter on CloudFlare
    • How do I contact support?
    • Red Dot: Campaign Status
      • Confirm your RSS Feed is valid
      • Confirm your integration is still connected
Powered by GitBook
On this page
  • Overview
  • Section Properties
  • Hiding a Section When There is No Content
  • Autoload and Preload
  1. Email Templates
  2. Getting Started
  3. Custom Template
  4. Getting Started with FeedOtter Templates
  5. Curated Email Setup Best Practices

Curated Newsletter Sections

Define sections in your newsletter to make curated simple.

Overview

Curated Newsletters can optionally have defined sections of content. This is purely to make adding and editing content in the FeedOtter UI more pleasant.

Sections are defined in the <head> of your HTML email, similar to custom fields.

<html>
<head>
<script type="application/ld+json" id="sections">
        [
	{"prettyName": "Section 1", "name":"section1", "max":1,"autoload":"false", "preloadFeed":""},
	{"prettyName": "Section 2", "name":"section2", "max":3,"autoload":"false", "preloadFeed":""},
	{"prettyName": "Section 3", "name":"section3", "max":4,"autoload":"false", "preloadFeed":""}
        ]
</script>
</head>
<body>

<h3>Header for Section 1 Post</h3>
<!--## [% for post in feedotter.posts_section1 %] ##-->
<tr>
<h1>[[post.post_title]]</h1>
</tr>
<!--## [% endfor %] ##-->

<h3>Header for Section 2 Posts</h3>
<!--## [% for post in feedotter.posts_section2 %] ##-->
<tr>
<h1>[[post.post_title]]</h1>
</tr>
<!--## [% endfor %] ##-->


<!--## [% if feedotter.posts_section3 is not empty %] ##-->
<h3>Header for Section 3 Posts</h3>
<p>This will be hidden if there are no posts selected for Section 3 in the UI.</p>
<!--## [% for post in feedotter.posts_section3 %] ##-->
<tr>
<h1>[[post.post_title]]</h1>
</tr>
<!--## [% endfor %] ##-->
<!--## [% endif %] ##-->
</body>
</html>

Section Properties

  • prettyName - The label that will show in the FeedOtter UI.

  • name - The technical name you will use to refer to this section in code.

  • max - The maximum number of posts allowed in this section.

  • autoload - Supports "true" or "false". If "true" a feed is required in the preloadFeed parameter.

  • preloadFeed - Expects a valid RSS feed url.

Here is an example of a Curated email with its sections marked:

By dividing a curated newsletter into sections we can give the email editor a better interface in FeedOtter to drag and drop articles into each section individually.

Hiding a Section When There is No Content

You may wish to use an IF statement to show or hide a section if there is no content in a section. Here's a code example:

<!--## [% if feedotter.posts_section3 is not empty %] ##-->
//display section content loop here....
<!--## [% endif %] ##-->

What this conditional is telling FeedOtter is that if your featured section does contain content, this area of the HTML email template should also be displayed in your newsletter.

Autoload and Preload

When using sections you can choose to "preload" content directly from an RSS feed into a section. This can be useful if you have one or more sections in your newsletter where you want content to prefill automatically when a new issue is created.

To prefill a section:

  • Set "autoload" = "true"

  • Set "preloadFeed" = The full URL of your RSS feed.

Changing the Section 1 values to preload 1 post from the FeedOtter blog automatically

{"prettyName": "Section 1", "name":"section1", "max":1,"autoload":"true", "preloadFeed":"https://www.feedotter.com/feed"},

Place your updated HTML email code in the Setup area of your newsletter. Autoloading content only works when creating new Issues via the the New Issue button.

Last updated 3 months ago