I want to send HTML email without any template in ozimov spring boot email tools. When I try to use DefaultEmail like this:
final Email email = DefaultEmail.builder()
.from(new InternetAddress("anyone@example.com", "Anyone"))
.to(Lists.newArrayList(managerMailAddress)).subject("Test")
.body(mailBody).encoding("UTF-8").build();
But this sucks. When sent this, All html tags are shown in the mail. So how can I send an HTML email?