39 lines
2.0 KiB
PHP
39 lines
2.0 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit;
|
|
|
|
// 이 파일은 새 메일 템플릿 생성 시 기본으로 로드되는 헤더와 푸터 HTML을 정의합니다.
|
|
|
|
$default_header_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: #f8f9fa;">
|
|
<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;">
|
|
<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>
|
|
EOT;
|
|
|
|
$default_footer_html = <<<EOT
|
|
<!-- 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;
|
|
|
|
?>
|