13 lines
313 B
Java
13 lines
313 B
Java
package mail;
|
|
|
|
import javax.mail.Authenticator;
|
|
import javax.mail.PasswordAuthentication;
|
|
|
|
public class SMTPAuthenticatior extends Authenticator{
|
|
|
|
@Override
|
|
protected PasswordAuthentication getPasswordAuthentication() {
|
|
return new PasswordAuthentication("admin@bcb.or.kr","koefA01!");
|
|
}
|
|
}
|