#119 create grantCreateNotification mail template

merge-requests/84/head
T-Midnight 5 years ago
parent e3ad5ba510
commit 2d9fd05060

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Уведомление о создании гранта</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" th:href="@{|${baseUrl}/favicon.ico|}"/>
</head>
<body>
<p>
Уважаемый(ая) <span th:text="${user.firstName + ' ' + user.lastName}">Ivan Ivanov</span>
</p>
<p>
Был добавлен новый грант: "<a th:href="@{|${baseUrl}/grants/grant?id=${grant.id}|}">
<span th:text="${grant.title}">Title</span></a>".
<br/>
</p>
<p>
Руководитель гранта:
<span th:text="${grant.leader.firstName}"></span>
<span th:text="${grant.leader.lastName}">Leader</span>.
</p>
<p>
Regards,
<br/>
<em>NG-tracker.</em>
</p>
</body>
</html>
Loading…
Cancel
Save