| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html lang="ko"
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : MktmailmanagementPreviewForm.html
- * @desc : MktmailmanagementPreviewForm MKT메일 미리보기 화면
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021. 02. 19 csh9191 최초 작성
- *******************************************************************************
- -->
- <head>
- <title>::메일템플릿 미리보기::</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- </head>
- <body>
- <!-- 메일템플릿 헤더 -->
- <th:block th:utext="${previewInfo.mailhContent}"></th:block>
-
- <!-- 메일템플릿 내용 -->
- <th:block th:if="${previewInfo.mailtGb == 'A'}" th:utext="${previewInfo.mailContent}"></th:block>
-
- <!-- 마케팅메일일 때 상품 메일 내용 -->
- <th:block th:if="${previewInfo.mailtGb == 'M'}" th:utext="${previewInfo.goodsMailContent}"></th:block>
-
- <!-- 메일템플릿 푸터 -->
- <th:block th:utext="${previewInfo.mailfContent}"></th:block>
- </body>
- </html>
|