MailTemplatePreviewForm.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html lang="ko"
  3. xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:th="http://www.thymeleaf.org">
  5. <!--
  6. *******************************************************************************
  7. * @source : MktmailmanagementPreviewForm.html
  8. * @desc : MktmailmanagementPreviewForm MKT메일 미리보기 화면
  9. *============================================================================
  10. * STYLE24
  11. * Copyright(C) 2020 TSIT, All rights reserved.
  12. *============================================================================
  13. * VER DATE AUTHOR DESCRIPTION
  14. * === =========== ========== =============================================
  15. * 1.0 2021. 02. 19 csh9191 최초 작성
  16. *******************************************************************************
  17. -->
  18. <head>
  19. <title>::메일템플릿 미리보기::</title>
  20. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  21. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  22. </head>
  23. <body>
  24. <!-- 메일템플릿 헤더 -->
  25. <th:block th:utext="${previewInfo.mailhContent}"></th:block>
  26. <!-- 메일템플릿 내용 -->
  27. <th:block th:if="${previewInfo.mailtGb == 'A'}" th:utext="${previewInfo.mailContent}"></th:block>
  28. <!-- 마케팅메일일 때 상품 메일 내용 -->
  29. <th:block th:if="${previewInfo.mailtGb == 'M'}" th:utext="${previewInfo.goodsMailContent}"></th:block>
  30. <!-- 메일템플릿 푸터 -->
  31. <th:block th:utext="${previewInfo.mailfContent}"></th:block>
  32. </body>
  33. </html>