Let's say I've the following variables to pass to my Email Template:
$vars = array(
'products' => $products,
);
Where $products is a collection, how could I iterate over this collection in Email template?
|
|
|
I don't believe that Magento's templating engine is clever enough to do loops. Instead, use an inline block, as Magento does for order items. Something like this:
Hope that helps! Thanks, Joe |
|||
|
|
The above works, but an alternative would be to let your XML do the work by calling the layout handle in the email template:
In your local.xml or module.xml or where ever you like:
I guess the main difference is where you're doing most of your email "work". I've used this method for loading in email headers/footers that stay the same in each template. The previous answer is likely simpler for basic tasks, however. |
|||
|
|