我有一个像发票一样的Html电子邮件模板。
<table border="1">
<thead>
<tr>
<td>Item ID</td>
<td>Name</td>
<td>Qty</td>
<td>Unit Price</td>
</tr>
</thead>
<tbody>
<tr>
<td>{ItemID}</td>
<td>{Name}</td>
<td>{Qty}</td>
<td>{UnitPrice}</td>
</tr>
</tbody>
</table>
List<ItemList> ItemList = new List<ItemList>();
public Class ItemList{
public int ItemID {get;set;}
public string Name {get;set;}
public int Qty {get;set;}
public decimal UnitPrice {get;set}
}