Title: Message
In this case I would use one object that retrieves n banners which returns an array of structures. Then you can set your lowBanners to <cfset variables.lowBanners=getBanners(bannersToRetrieve=6);
 
Inside your mail.
 
<cfmail>
    <cfloop from="1" to="#arrayLen(variables.lowBanners)#" index="idx">
        <img src=""/>
    </cfloop>
</cfmail>

Reply via email to