workflow/src/main/resources/email/test.html
LingandRX 09be5b02e1 feat:
- 添加mysql配置
- 添加数据连接池
- 添加mybatis配置
- 添加log配置
- 添加User实体类
- 添加UserMapper
- 添加User测试
2025-06-04 23:48:34 +08:00

22 lines
548 B
HTML

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Test Title</title>
</head>
<body>
<div id="welcome">
<h3>
欢迎使用 TEST HTML
<span th:text="${project}">- Powered By <span th:text="${author}"></span></span>
</h3>
<span style="text-align: center; padding: 10px">
<a style="text-decoration: none" href="#" th:href="@{${url}}" target="_blank">
<strong>Spring Boot入门首选</strong>
</a>
</span>
</div>
</body>
</html>