Following on from this thread:
http://devnet.kentico.com/Forums/f65/t32511/Foreach-usage-in-k-macros.aspx
I'm trying to render items in a foreach collection in an email template using the following code:
<b>Active Users</b><br/>
{% foreach(item in users_active) { ResolveMacros("\r\n{%item%\}<br/>\r\n") } %}
The items are rendering correctly, but the html "<br/>" inside the loop is being treated as output text instead of html. How can I escape it so that it renders a new-line instead?