我使用Thymeleaf模板生成HTML页面,然后将其用作电子邮件的内容。所需的字体系列是Calibri。然而,当生成HTML文档(然后作为电子邮件发送)时,包含此文档的检索到的电子邮件不包含Calibri中的字体。但是,如果我删除与Thymeleaf相关的元素并在浏览器中将该页面作为普通HTML页面启动,它确实会显示Calibri中的内容。有谁知道问题出在哪里?提前谢谢!
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title></title>
<link href='http://fonts.googleapis.com/css?family=Calibri'
rel='stylesheet' type='text/css' />
<style>
body {
font-family: 'Calibri', serif;
font-size: 11pt;
}
</style>
</head>
<body>
<p style="line-height:25pt;">
We from <span th:text="${nameCompany}"></span> are sending you an email.
</p>
</body>
</html>
答案 0 :(得分:1)
您可以尝试更改此行代码并告诉我这是否有帮助
更改
<link href='http://fonts.googleapis.com/css?family=Calibri'
rel='stylesheet' type='text/css' />
到
<link th:href="@{http://fonts.googleapis.com/css?family=Calibri}"
rel='stylesheet' type='text/css' />
答案 1 :(得分:0)
你应该使用代码的语法。有时tyhmleaf不接受浏览器理解的语法。