0
私はテンプレート付きのメールをthymeleafで送信していますが、画像が添付されています。ここに私のコードは次のとおりです。画像はタイムリーフでメールに添付されています
HTML:
<!-- I need put the image backgroud via css!-->
<body th:style="'background-image: url('+ |cid:${background}| +')'">
<!--my image-->
<img src="../../../static/images/email/topo_email.png" th:src="|cid:${logo}|"/>
</body>
JAVA:
//the main code of the method is here:
String emailFormatado = contatoEmail.getDescricao().replace(System.lineSeparator(), "<br>");
contatoEmail.setDescricao(emailFormatado);
Context context = new Context(new Locale("pt", "BR"));
context.setVariable("contatoEmail", contatoEmail);
context.setVariable("logo", "logo");
context.setVariable("background", "background");
try {
String corpoEmail = thymeleaf.process("admin/mail/EmailResposta", context);
MimeMessage mimeMessage = mailSender.createMimeMessage();
MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true, "UTF-8");
helper.setFrom(contatoEmail.getUsuario().getEmail());
helper.setTo(email);
helper.setSubject(String.format("Mensagem de respota"));
helper.setText(corpoEmail, true);
helper.addInline("background", new ClassPathResource("static/images/email/background_email.png"));
helper.addInline("logo", new ClassPathResource("static/images/email/topo_email.png"));
mailSender.send(mimeMessage);
} catch (MessagingException e) {
logger.error("Erro enviando e-mail", e);
}
すべてがcorretly取り組んでいるが、画像が添付されています。あなたが私を助けることを願っています。