/******************************************************
' 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/database.php");
include("$inc/define.php");
// テンプレート選択
function select_template($nigaoe_id) {
$sql = "SELECT mt_template_id,mt_guide FROM m_mail_template WHERE mt_template_id LIKE 'msg_%' ORDER BY mt_template_id";
$result = db_exec($sql);
$nrow = pg_num_rows($result);
for ($i = 0; $i < $nrow; $i++) {
$fetch = pg_fetch_object($result, $i);
echo "$fetch->mt_guide
\n";
}
}
set_global('charara', '', 'きゃららFactory メール返信', BACK_TOP);
if ($template_id) {
$sql = "SELECT mt_subject,mt_from,mt_body FROM m_mail_template WHERE mt_template_id=" . sql_char($template_id);
$result = db_exec($sql);
if (pg_num_rows($result)) {
$fetch = pg_fetch_object($result, 0);
$subject = $fetch->mt_subject;
$from = $fetch->mt_from;
$body = $fetch->mt_body;
}
}
?>