You need to sign in to do that
Don't have an account?

How to show the inline items indent in the email template.
I have an email template where i'm listing all the products purchased by the customer. When the customer purchased a bundle product, I have to show the product name as a main item then indent the inline product items in the bundle.
Ex.
1. Canon Camera bundle
Wide anlge Lens
Tripod
Remote switch
Camera bag
2. Memory Card
3. Baterry
4. Flash
Ex.
1. Canon Camera bundle
Wide anlge Lens
Tripod
Remote switch
Camera bag
2. Memory Card
3. Baterry
4. Flash
<apex:repeat value="{!OrdItm}" var="item">
<tr>
<td style="width:50%;">
<apex:outputText value="{!item.code & ' ' & item.productName}" />
</td>
<td class="a-right" style="width:110px;">
<apex:outputPanel layout="none" rendered="{!IF(item.pricingTiers.size > 1,false,true)}">
<amount="{!item.Price}" />
</apex:outputPanel>
<apex:outputPanel layout="none" rendered="{!IF(item.pricingTiers.size > 1,true,false)}">
<apex:repeat value="{!item.pricingTiers}" var="tier" id="pricingTiers">
<apex:outputText value="{!tier.Quantity}" /><span> X </span><amount="{!tier.Price}" /><br />
</apex:repeat>
</apex:outputPanel>
</td>
</tr>
</apex:repeat>
Did you happen to try it?
http://www.salesforce.com/docs/developer/pages/Content/pages_email_templates_stylesheets.htm
http://www.w3schools.com/tags/tag_p.asp