2017-10-17 88 views
0

我發送帶模板的郵件使用百里香,但圖像正在附加,它不會發生。這裏是我的代碼:圖像被附上郵寄加百里香

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,但圖像連接。我希望你能幫助我。

回答

0

解決辦法:

在我的Java代碼,這裏我把圖像的變量,缺少的圖像類型:

helper.addInline("logo", new ClassPathResource("static/images/email/topo_email.png"), "image/png");