Hello Guys, 

i have a repeater that is populated by dynamic data. i would like to email the 
contents of the repeater using cfmail in the same way they appear in the 
repeater. below is the way the repeated data is arranged in the repeater and 
the way i want to show it in the email.

<mx:Repeater id="orders"
                                         width="100%">
                        <mx:HBox width="100%">

                                <mx:Text width="182"
                                                 
text="{orders.currentItem.OrderNumber}    {orders.currentItem.Product}"
                                                 styleName="TextArea1"/>
                                <mx:Spacer width="100%"/>
                                <mx:Text id="subQty"
                                                 width="50"
                                                 text="{orders.currentItem.Qty}"
                                                 styleName="TextArea1"
                                                 textAlign="center"/>
                                <mx:Spacer width="100%"/>
                                <mx:Text id="orderPrice"
                                                 width="64"
                                                 
text="{parentApplication.swissFormatter.format(orders.currentItem.Price)}"
                                                 styleName="TextArea1"/>
                                <mx:Spacer width="100%"/>
                                <mx:Text id="subTotal"
                                                 
text="{orders.currentItem.subTotal}"
                                                 width="69"
                                                 styleName="TextArea1"/>

                        </mx:HBox>
                </mx:Repeater>

Reply via email to