13 lines
452 B
PHP
13 lines
452 B
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit;
|
|
|
|
// 이 파일은 새 메일 템플릿 생성 시 기본으로 로드되는 헤더와 푸터 HTML을 정의합니다.
|
|
$base_mail_templates_php_path = __DIR__.'/base/mail_layout.php';
|
|
$mail_templates_php_path =__DIR__.'/'.$config['cf_theme'].'/mail_layout.php';
|
|
if(file_exists($mail_templates_php_path)){
|
|
include_once ($mail_templates_php_path);
|
|
}else {
|
|
include_once ($base_mail_templates_php_path);
|
|
}
|
|
|
|
?>
|