Releases: rocketbase-io/email-template-builder
Releases · rocketbase-io/email-template-builder
1.4.0
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()
1.2.0
1.1.0
added possibility to overrule html/text detection
thx to @bernolanger
1.0.2
1.0.1
1.0.0
- added image
- added jsoup for better html -> text conversation
- added via jsoup a dynamic style injection for links within footer and text
- merged addHtml and addText to just one (jsoup will detect html)
- changed fluent api in order to get more flexibility for options