首页 > 解决方案 > Thymeleaf 电子邮件图像未显示

问题描述

我将 Thymeleaf 与 Spring Boot 一起使用。

我正在尝试使用 html 模板发送邮件。

邮件没问题,模板中的变量thymeleaf被替换它是完美的,但是,我唯一的问题是图像不显示。就像图像不存在一样。

html 模板和图像 ( Picture.png ) 在同一个文件夹中。

在模板中,我尝试了这些倍数:

<img src="Picture.png" />

<img src="@{Picture.png}" />

<img th:src="|cid:${imageName}|" />  // by passing the "Picture.png" in the imageName variable

<img th:src="@{Picture.png}" />

但没有任何工作,我需要帮助谢谢!

标签: htmlspring-bootthymeleaf

解决方案


我回答了我自己的问题,因为我成功解决了这个问题:

就这样放在<img src="cid:imageName"/>html文件中


推荐阅读