회원 이메일 발송 건수 15분 단위로 기존 200건 -> 500건으로 변경

This commit is contained in:
rosewiper 2024-10-25 16:52:59 +09:00
parent 394fd08094
commit 22f5be522c
2 changed files with 2 additions and 2 deletions

View File

@ -4814,7 +4814,7 @@ public class EgovBBSManageController {
try {
// 이용약관 회원 전체발송
//mjonNoticeSendUtil.userAllTermsEmailSend();
mjonNoticeSendUtil.userAllTermsEmailSend();
}
catch(Exception e) {
isSuccess = false;

View File

@ -503,7 +503,7 @@ public class MjonNoticeSendUtil {
mailSender.setContents(emailContents);
// Step2. 발송대상자 List
termsVO.setRecordCountPerPage(200);
termsVO.setRecordCountPerPage(500);
List<TermsVO> resultList = new ArrayList<TermsVO>();
resultList = egovSiteManagerService.selectTermsEmailTargetList(termsVO);
for(TermsVO item : resultList) {