448번줄 보시면
// 코멘트 쓴 모든이에게 메일 발송
if ($cfg[comment_all_email]) {
$sql = " select wr_email from $write_table
where wr_email not in ( '$admin[mb_email]' , '$wr[wr_email]', '' )
and wr_parent_id = '$wr_id'
group by wr_email ";
$result = sql_query($sql);
while ($row=mysql_fetch_array($result)) {
mailer($wr_name, $wr_email, $row[wr_email], $subject, $content, 1);
}
}
메일 보내는 문이 있습니다.
if ($cfg[comment_all_email]) 이쪽에 있는 문을
if ($cfg[comment_all_email] && !($write_table == "원하지 않는 테이블"))
댓글 3개
^_^;;
448번줄 보시면
// 코멘트 쓴 모든이에게 메일 발송
if ($cfg[comment_all_email]) {
$sql = " select wr_email from $write_table
where wr_email not in ( '$admin[mb_email]' , '$wr[wr_email]', '' )
and wr_parent_id = '$wr_id'
group by wr_email ";
$result = sql_query($sql);
while ($row=mysql_fetch_array($result)) {
mailer($wr_name, $wr_email, $row[wr_email], $subject, $content, 1);
}
}
메일 보내는 문이 있습니다.
if ($cfg[comment_all_email]) 이쪽에 있는 문을
if ($cfg[comment_all_email] && !($write_table == "원하지 않는 테이블"))