In-Table List in Email Document

Note
In this article, we will use GroupDocs.Assembly to generate a In-Table List report in Email Document format.

In-Table List in Email Document

Note
This feature is supported by version 17.8.0 or greater

Reporting Requirement

As a report developer, you are required to represent the information of the managers with the following key requirements:

  • Report must be in .eml or .msg format.
  • It must add email recipient, css and subject of the email.
  • Report must show customers’ name.
  • It must show the sum of orders prices against each customer.
  • It must sum up all the order prices for all the customers.
  • All the representation must be in tabular form.

Adding Syntax to be evaluated by GroupDocs.Assembly Engine

Customer

Order Price

<<foreach [in customers]>><<[CustomerName]>>

<<[Order.Sum(

c => c.Price)]>><</foreach>>

Total:

<<[Sum(

m => m.Order.Sum(

c => c.Price))]>>

Tip
For detailed technical information about syntax,expressions and report generation by the engine, please visit: Working with GroupDocs.Assembly Engine.

Download In-Table List Template

Please download the sample In-Table List document we created in this article:

Generating The Report

Note
The code uses some of the objects defined in: The Business Layer