Relative Content

Tag Archive for thymeleaf

Inline images are showing as attachment in thymeleaf

try {
String emailNotificationTemplate = thymeleaf.process(“email_template.html”, context);
MimeMessage mimeMessage = mailSender.createMimeMessage();
MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true, “UTF-8”);
helper.setFrom(“[email protected]”);
helper.setTo(email);
helper.setSubject(“Email subject”);
helper.setText(emailNotificationTemplate, true);