답변 1개
채택된 답변
+20 포인트
Expert
7년 전
bbs/register_form_update.php 에서 메일 발송이 이뤄지는데
register_form_update_mail1~3.php 파일을 호출해 발송되어지고 있습니다.
그리고 발신인은 관리자 기본설정에 관리자메일 주소로 발송되어지기 때문에 관리자 기본환경설정에서 수정해 주시면 됩니다.
1:1문의 메일 발송 처리되어지는 경로 bbs/qawrite_update.php 파일에서 발송됩니다.
로그인 후 평가할 수 있습니다
답변에 대한 댓글 5개
l
lacomparte
7년 전
[code]
// 답변 이메일전송
if($w == 'a' && $write['qa_email_recv'] && trim($write['qa_email'])) {
include_once(G5_LIB_PATH.'/mailer.lib.php');
$subject = $qaconfig['qa_title'].' 답변 알림 메일';
$content = nl2br(conv_unescape_nl(stripslashes($qa_content)));
//2018-03-20 주석처리 mailer($config['cf_admin_email_name'], $config['cf_admin_email'], $write['qa_email'], $subject, $content, 1);
mailer('관리자', $config['cf_admin_email'], $write['qa_email'], $subject, $content, 1);
}
// 문의글등록 이메일전송
if(($w == '' || $w == 'r') && trim($qaconfig['qa_admin_email'])) {
include_once(G5_LIB_PATH.'/mailer.lib.php');
$subject = $qaconfig['qa_title'].' 질문 알림 메일';
$content = nl2br(conv_unescape_nl(stripslashes($qa_content)));
//2018-03-20 주석처리 mailer($config['cf_admin_email_name'], $qa_email, $qaconfig['qa_admin_email'], $subject, $content, 1);
mailer('관리자', $qa_email, $qaconfig['qa_admin_email'], $subject, $content, 1);
}
[/code]
이 부분인것 같아서,
위와 같이 수정하고 테스트 해보니
다르지 않은데..
반영되기 까지 시간이 좀 걸리는건가요?
ㅠㅠ
// 답변 이메일전송
if($w == 'a' && $write['qa_email_recv'] && trim($write['qa_email'])) {
include_once(G5_LIB_PATH.'/mailer.lib.php');
$subject = $qaconfig['qa_title'].' 답변 알림 메일';
$content = nl2br(conv_unescape_nl(stripslashes($qa_content)));
//2018-03-20 주석처리 mailer($config['cf_admin_email_name'], $config['cf_admin_email'], $write['qa_email'], $subject, $content, 1);
mailer('관리자', $config['cf_admin_email'], $write['qa_email'], $subject, $content, 1);
}
// 문의글등록 이메일전송
if(($w == '' || $w == 'r') && trim($qaconfig['qa_admin_email'])) {
include_once(G5_LIB_PATH.'/mailer.lib.php');
$subject = $qaconfig['qa_title'].' 질문 알림 메일';
$content = nl2br(conv_unescape_nl(stripslashes($qa_content)));
//2018-03-20 주석처리 mailer($config['cf_admin_email_name'], $qa_email, $qaconfig['qa_admin_email'], $subject, $content, 1);
mailer('관리자', $qa_email, $qaconfig['qa_admin_email'], $subject, $content, 1);
}
[/code]
이 부분인것 같아서,
위와 같이 수정하고 테스트 해보니
다르지 않은데..
반영되기 까지 시간이 좀 걸리는건가요?
ㅠㅠ
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인전체 질문 목록
답변대기
채택
채택
채택
채택
채택
채택
답변대기
채택
채택
채택
답변대기
채택
채택
답변대기
채택
채택
채택
채택