답변 1개
채택된 답변
+20 포인트
eyekiss
1년 전
/adm/member_form.php 파일에 아래 부분을 추가하고
Copy
<input type="hidden" name="old_mb_level" value="<?php echo $member['mb_level'] ?>">
/adm/member_form_update.php 에서
Copy
if($mb_level > $old_mb_level) {
$subject = '['.$config['cf_title'].'] 회원등급이 변경되었습니다.';
ob_start();
include_once ('./member_form_update_mail1.php');
$content = ob_get_contents();
ob_end_clean();
$content = run_replace('register_form_update_mail_mb_content', $content, $mb_id);
mailer($config['cf_admin_email_name'], $config['cf_admin_email'], $mb_email, $subject, $content, 1);
}
member_form_update_mail1.php 파일은 메일 내용 작성
/bbs/register_form_update_mail1.php 파일을 복사해서 만들어야 합니다.
로그인 후 평가할 수 있습니다
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인