• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
chominsoo4245 / mjon_git star
Forked from hylee / mjon_git
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjon_gitsrcmainjavaitnletmailwebMailTemplateRestController.java
Download as .zip file
File name
Commit message
Commit date
DATABASE
mjon_git
2023-06-12
src/main
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-20
.codetogether.ignore
mjon_git
2023-06-12
.gitignore
gitignore 적용
2023-06-12
pom.xml
플러그인 추가 원복
2024-02-16
File name
Commit message
Commit date
java
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-20
resources
인증번호 패키지화 완료
2024-11-20
webapp
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-20
File name
Commit message
Commit date
egovframework
mjon_git
2023-06-12
itn
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-20
File name
Commit message
Commit date
com
1. 결제관리 > 요금 사용내역 > 사용내역서 및 거래명세서 팝업 팩스 정보 누락 수정 2. 비밀번호 찾기 휴대폰, 이메일, 본인인증 진행시 회원 상태 체크 - 이용정지, 탈퇴회원은 비밀번호 찾기 안되도록 처리 3. 발신번호 관리에서 발신번호명을 현재 회원명(기업명)으로 표시 되도록처리 4. 로그인 처리시 인터셉터에서 필터 처리 예외 적용 - id_text, userid 변수에 대한 예외 처리 적용 5. 메인메뉴 및 사이트맵 a 태그에 rel="nosublink" 태그 삭제
2024-08-23
let
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-20
web
스케줄러 500개로 줄임
2024-11-06
File name
Commit message
Commit date
cert
인증번호 패키지화 완료
2024-11-20
cop
이용약관 및 개인정보 내용 수정
2024-10-28
crypto/web
mjon_git
2023-06-12
fax
팩스 back단에서 금액체크
2024-03-15
hangulparser
mjon_git
2023-06-12
kakao
알림톡 발송 시 대체문자 길이 확인 로그 추가
2024-10-21
komoran
mjon_git
2023-06-12
lett
선택한 그림문자의 우선선위 변경 기능 추가
2023-09-05
mail
문자온 대표번호 변경으로 인한 15518011 으로 변경
2024-07-31
main
이준호 문자온 커밋 - IP 받아오는 방식 수정
2023-07-28
mjo
인증번호 패키지화 완료
2024-11-20
module/base
mjon_git
2023-06-12
org
mjon_git
2023-06-12
schdlr/service
스케줄러 기능 수정
2024-11-07
sec
mjon_git
2023-06-12
solr
mjon_git
2023-06-12
sts
mjon_git
2023-06-12
sym
이용약관 관련 기능 수정
2024-11-05
uat
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-20
uss
인증번호 패키지화 완료
2024-11-20
utl
회원 이메일 발송 건수 15분 단위로 기존 200건 -> 500건으로 변경
2024-10-25
File name
Commit message
Commit date
service
문자온 대표번호 변경으로 인한 15518011 으로 변경
2024-07-31
web
휴면회원 지정 추가
2023-07-25
File name
Commit message
Commit date
MailTemplateController.java
휴면회원 지정 추가
2023-07-25
MailTemplateRestController.java
mjon_git
2023-06-12
hylee 2023-06-12 88fd5b0 mjon_git UNIX
Raw Open in browser Change history
package itn.let.mail.web; import javax.annotation.Resource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.ResponseEntity; import org.springframework.util.MultiValueMap; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; import itn.let.mail.service.EmailItnVO; import itn.let.mail.service.MailTemplateService; import itn.let.mail.service.StatusResponse; /** * * @packageName : itn.let.mail.web * @fileName : MailTemplateRestController.java * @author : 이호영 * @date : 2022.07.05 * @description : iten 홈페이지에서 채용공고 메일 보내는 컨트롤러 * =========================================================== * DATE AUTHOR NOTE * ----------------------------------------------------------- * * 2022.07.05 이호영 최초 생성 * * * */ @RestController //@CrossOrigin(origins="*") public class MailTemplateRestController { private static final Logger log = LoggerFactory.getLogger(MailTemplateRestController.class); @Resource(name = "MailTemplateService") private MailTemplateService mailTemplateService; /** * @methodName : mailSendItnRecruitFile * @author : 이호영 * @date : 2022.07.05 * @description: api 요청으로 첨부파일 서버 저장 * @param multi * @param request * @param response * @return */ @RequestMapping(value = "/web/itnApi/fileUpload.do", method = RequestMethod.POST) public ResponseEntity<StatusResponse> mailSendItnRecruitFile(@RequestParam("file") MultipartFile multi) { return ResponseEntity.ok().body(mailTemplateService.mailSendItnRecruitFile(multi)); } /** * @methodName : mailSendItnRecruit * @author : 이호영 * @date : 2022.07.05 * @description : * @param emailAttVO * @return * @throws Exception */ @RequestMapping(value = "/web/itnApi/rcrtSendMail.do", method = RequestMethod.GET) public ResponseEntity<StatusResponse> mailSendItnRecruit(@RequestParam MultiValueMap<String, String> emailAttParams) throws Exception { System.out.println("emailAttParams : "+ emailAttParams.toString()); EmailItnVO emailAttVO = new EmailItnVO( emailAttParams.get("fileNm").toString() ,emailAttParams.get("oriFileNm").toString() ,emailAttParams.get("name").toString() ,emailAttParams.get("phone").toString() ,emailAttParams.get("email").toString() ,emailAttParams.get("portfolio").toString() ,emailAttParams.get("field").toString() ,emailAttParams.get("content").toString() ); return ResponseEntity.ok().body(mailTemplateService.mailSendItnRecruit(emailAttVO)); } /** * @methodName : mailSendItnRecruit * @author : hylee * @date : 2022.07.08 * @description : * @param emailAttVO * @return * @throws Exception */ @RequestMapping(value = "/web/itnApi/contactUsSendMail.do", method = RequestMethod.GET) public ResponseEntity<StatusResponse> mailSendItnContactUs(@RequestParam MultiValueMap<String, String> emailAttParams) throws Exception { System.out.println("emailItnVO.getOriFileNm() :: ["+emailAttParams+"]"); EmailItnVO emailAttVO = new EmailItnVO( emailAttParams.get("fileNm").toString() ,emailAttParams.get("oriFileNm").toString() ,emailAttParams.get("title").toString() ,emailAttParams.get("name").toString() ,emailAttParams.get("email").toString() ,emailAttParams.get("content").toString() ); return ResponseEntity.ok().body(mailTemplateService.mailSendItnContactUs(emailAttVO)); } }

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up