/****************************************************** ' System :「きゃららFactory」管理者用ページル ' Content:送信メールテンプレート変更画面 '******************************************************/ $top = '../..'; $inc = "$top/inc"; include("$inc/login_check.php"); include("$inc/header.php"); $inc = "$top/../inc"; include("$inc/common.php"); include("$inc/define.php"); include("$inc/database.php"); include("$inc/select.php"); // メイン処理 set_global('etc', 'メール配信管理', '送信メールテンプレート', BACK_TOP); switch ($template_id) { case 'present1': $msg = "※差込文字が使えます。(会員氏名: %MEMBER_NAME% 、会員トップURL: %TOP_URL%) "; break; case 'present2': $msg = "※差込文字が使えます。(タイトル: %TITLE% 、発送日: %SEND_DATE%) "; break; } $sql = "SELECT * FROM m_mail_template WHERE mt_template_id='$template_id'"; $result = db_exec($sql); if (pg_numrows($result) == 0) system_error("template_idが不正", __FILE__); $fetch = pg_fetch_object($result, 0); ?>