1.3.0
- added table as new content-type
HtmlTextEmail htmlTextEmail = EmailTemplateBuilder.builder()
.addTable()
.addHeader("Invoice #12345<br>June 01 2014", true, Alignment.LEFT)
.addItemRow("Special Product", "123,00 €").nextRow()
.addItemRow("Short service", BigDecimal.valueOf(103, 1)).nextRow()
.addTotalRow(BigDecimal.valueOf(13333, 2)).totalCaption("Gesamt")
.build()