c-innovacion2/resoft/mail/SMTPAuthenticatior.java

7 lines
216 B
Java

public class SMTPAuthenticatior extends Authenticator{
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("메일 ID","메일 PW");
}
}