Skip to content

Releases: rocketbase-io/email-template-builder

1.4.0

23 Jan 11:48
Compare
Choose a tag to compare
  • added styling options for text + footer (color, fontStyle, textDecoration, fontWeight)
  • added full-width image
  • upgraded to pebble 3.1.2

1.3.0

15 Oct 21:34
Compare
Choose a tag to compare
  • 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

08 Oct 13:33
Compare
Choose a tag to compare

upgraded versions - pebble 3.1.0 and jsoup 1.12.1

1.1.0

11 Sep 07:48
Compare
Choose a tag to compare

added possibility to overrule html/text detection
thx to @bernolanger

1.0.2

17 Jul 15:01
Compare
Choose a tag to compare

improved html -> text will replace br and p by new line in text version

1.0.1

17 Jul 15:00
Compare
Choose a tag to compare

removed "text-transform: capatize" from button styling

1.0.0

17 Jul 14:26
Compare
Choose a tag to compare
  • 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

0.1.0

24 Jun 19:18
Compare
Choose a tag to compare

first release with main basic features