# Display a Full Article in Your Email

Many customers display a full article of content in their automated emails as seen below.

![](https://2086102864-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FIdHBGk8cqznUpEqm5g1U%2Fuploads%2FMiFIMYXDRA4NIUIWBBTL%2Fimage.png?alt=media\&token=c7ea3f26-2be7-4bc4-a0c0-5e6789f68fe3)

This requires a few extra considerations.

1. Your RSS feed must contains the full article content. This will be in the \<content> tag of your RSS feed.
2. Your email code must use the \[\[post.post\_content]] token.  This accesses the full article contained in the \<content> xml.  It also keeps the incoming html intact. For now this is what you want.
3. FeedOtter has created a few special filters to help process incoming HTML and images and prevent them from breaking your responsive emails.  So, instead of using the vanilla post\_content token we recommend the following:

{% code overflow="wrap" %}

```
[[post.post_content | cleanImages | striptags('<p><br><span><a><div><b><strong><i><em><img>') ]]

/*
Here is the breakdown:
- post_content = fetches the full article content as found in your RSS feed's <content> node.
- cleanImages = this is a special Filter that adjusts the width and height properties on any incoming images so that they won't break your email's responsiveness.  
- stripTags = another filter that removes all but the most basic HTML. This reduces the chance that some HTML from your website breaks your email.
*/

```

{% endcode %}

### Disclaimer

While we've assisted many customers without problems it is important to:

* Combining non-email-tested HTML in HTML emails is risky.
* Content from your RSS feed can affect email structure.
* Do not skip testing.
* Use FeedOtter's test feature to send email samples to Litmus or another testing tool for verification.
