| | |
| | | @Value("${total.statistics.email}") |
| | | private String totalStatisticsEmail; // 프로젝트, 이슈, 사용자수 알림 |
| | | |
| | | @Value("${email.joinEmail}") |
| | | private boolean bJoinEmail; |
| | | |
| | | @Autowired |
| | | private ExcelView excelView; |
| | | |
| | |
| | | userMap.put("registerDate", DateUtil.convertDateToYYYYMMDD(user.getRegisterDate())); |
| | | |
| | | // 회원 가입 알림 메일 전송 |
| | | this.systemEmailService.directEmail(new String[]{user.getAccount()}, EmailType.WORKSPACE_JOIN, userMap, null); |
| | | |
| | | if(bJoinEmail) { |
| | | this.systemEmailService.directEmail(new String[]{user.getAccount()}, EmailType.WORKSPACE_JOIN, userMap, null); |
| | | } |
| | | return user; |
| | | } |
| | | |