Dear $User.FullName$, {%set orders=User.GetOrders() /} Thank you for your order of $orders.Length$ items, We believe you will be very satisfied with the quality of costume pieces included in each. It is this quality that makes our imaginative play apparel so unique. We created an account for you to track your orders. Here is the login information: Email: $User.EmailAddress$ Password: $User.Password$ Following is the details of your order (OrderId: $OrderId$): # Part ID Name Quantity Price(per unit) Sub Total {%set Total=0.0 /}{%foreach orderproduct,i in orders%}{%set Total = Total + orderproduct.Price * orderproduct.Quantity/} {%rendertemplate orderproducttemplate item=orderproduct/}{$foreach%} Total: $PadLeft(Format(Total,"$$#.##"),11)$ If you have any concern, please call us at 913-555-0115. Sincerely, $CompanyName$ {%template orderproducttemplate%}$PadLeft(i,4)$$PadLeft(item.PartId, 7)$ $PadRight(item.ProductName, 15)$ $PadRight(item.Quantity, 5)$ $PadLeft(Format(item.Price,"$$#.##"), 7)$ $PadLeft(Format(item.Price*item.Quantity,"$$#.##"), 12)${$template%}