
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package com.takensoft.common.certify.service;
import com.takensoft.common.certify.vo.EmailVO;
/**
* @author 하석형
* @since 2025.05.20
* @modification
* since | author | description
* 2025.05.20 | 하석형 | 최초 등록
*
* 이메일 관련 인터페이스
*/
public interface EmailService {
/**
* @param emailVO - 이메일 정보
* @return boolean - 이메일 인증코드 발송 결과
*
* 이메일 인증코드 발송
*/
public boolean sendEmailCertifyCode(EmailVO emailVO);
/**
* @param emailVO - 이메일 정보
* @return boolean - 이메일 인증코드 확인 결과
*
* 이메일 인증코드 확인
*/
public boolean checkEmailCertifyCode(EmailVO emailVO);
}