61 lines
2.7 KiB
PHP
61 lines
2.7 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit;
|
|
|
|
/**
|
|
* 이메일의 본문 내용을 받아 전체 레이아웃 HTML을 반환하는 함수
|
|
*
|
|
* @param string $content 본문 내용 HTML
|
|
* @return string 완성된 전체 이메일 HTML
|
|
*/
|
|
function get_mail_layout($content)
|
|
{
|
|
// HEREDOC 문법을 사용하여 HTML 구조를 정의합니다.
|
|
// EOT; 로 끝날 때까지의 모든 내용을 $html 변수에 담습니다.
|
|
$html = <<<EOT
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>메일 미리보기</title>
|
|
</head>
|
|
<body style="margin: 0; padding: 0; -webkit-text-size-adjust: 100%; background-color: #fff;">
|
|
<div style="width: 100%; max-width: 600px; margin: 40px auto; background-color: #ffffff; border: 1px solid #dee2e6; border-radius: 8px; overflow: hidden; font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;">
|
|
|
|
<!-- Header: 모든 메일에 공통으로 적용되는 상단 부분 -->
|
|
<div style="padding: 30px; text-align: center; background-color: #f1f3f5; border-bottom: 1px solid #dee2e6;">
|
|
<span style="font-size: 14px; color: #868e96; letter-spacing: 1px;">Contact Us</span>
|
|
<h2 style="margin: 10px 0 0; font-size: 28px; color: #212529; font-weight: 600;">공간의 가능성을 열어보세요.</h2>
|
|
<p style="margin: 10px 0 0; font-size: 16px; color: #495057;">성진미도어의 전문가와 상담하고, 당신의 공간에 꼭 맞는 솔루션을 찾아보세요.</p>
|
|
</div>
|
|
|
|
<!-- Body: 이 부분이 템플릿 에디터의 내용으로 채워집니다. -->
|
|
<div style="padding: 30px;">
|
|
{$content}
|
|
</div>
|
|
|
|
<!-- Footer: 모든 메일에 공통으로 적용되는 하단 부분 -->
|
|
<div style="padding: 20px 30px; background-color: #f1f3f5; border-top: 1px solid #dee2e6; font-size: 14px; color: #868e96;">
|
|
<h4 style="margin: 0 0 15px; font-size: 16px; color: #495057;">Information</h4>
|
|
<p style="margin: 0 0 10px;">
|
|
<strong>본사 및 전시장:</strong> 충청남도 아산시 음봉면 월산로 128-130
|
|
</p>
|
|
<p style="margin: 0 0 10px;">
|
|
<strong>대표 연락처:</strong> T. 041-532-0555 / H. 010-5434-4126
|
|
</p>
|
|
<p style="margin: 0 0 10px;">
|
|
<strong>청주 전시장:</strong> T. 043-235-2352 / H. 010-2066-4126
|
|
</p>
|
|
<p style="margin: 0;">
|
|
<strong>운영시간:</strong> 평일 09:00 - 18:00 (주말 및 공휴일 휴무)
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|
|
EOT;
|
|
|
|
return $html;
|
|
}
|
|
?>
|