24 lines
560 B
Java
24 lines
560 B
Java
package itn.let.mail.service;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
public interface MailTemplateService {
|
|
|
|
// 휴면회원 메일발송
|
|
void mailSendMemberDormant() throws Exception;
|
|
|
|
// 휴면회원 SMS발송
|
|
void smsSendMemberDormant() throws Exception;
|
|
|
|
// 휴면회원으로 업데이트
|
|
void setMemberDormantUpdate() throws Exception;
|
|
|
|
|
|
StatusResponse mailSendItnRecruitFile(MultipartFile multi);
|
|
|
|
StatusResponse mailSendItnRecruit(EmailItnVO emailAttVO);
|
|
|
|
StatusResponse mailSendItnContactUs(EmailItnVO emailAttVO);
|
|
|
|
}
|