JAVA/JSP

메일 발송

CitronLemon 2019. 3. 7. 10:16

메일 발송


웹 서버 자체적으로는 메일 발송 기능이 없기 때문에 smtp서버와의 연동이 필요함


Javamail


JSP에서 메일 발송을 위한 SMTP 서버와의 연동 기능을 제공하는 오픈소스 라이브러리


- activation.jar, mail.jar: 메일 발송 라이브러리

- SMTPAuthenticator.java : 메일 발송에 필요한 계정정보 설정

- MailHelper.java : 메일발송 기능 Helper



인증정보 설정 클래스


1
2
3
4
5
6
7
8
9
10
11
package study.jsp.helper;
 
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
 
public class SMTPAuthenticator extends Authenticator {
    @override
    public PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication("자신의 Gmail 주소:""비밀번호")
    }
}
cs



메일 발송 기능 클래스


어제 코드 복사

MAILCLASShelper 복붙하기