com.gdxsoft.easyweb.utils.Mail.MailAuth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of emp-script-utils Show documentation
Show all versions of emp-script-utils Show documentation
Easy Web Appliaction Utils: UArgon2, UMail, UDigest, URsa,
UAes, UDes, UFile, UConvert, UFormat, UNet, SendMail, SmtpCfg
The newest version!
package com.gdxsoft.easyweb.utils.Mail;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
public class MailAuth extends Authenticator {
private String strUser;
private String strPwd;
public MailAuth(String user, String password) {
this.strUser = user;
this.strPwd = password;
}
public PasswordAuthentication getPasswordAuthentication() {
PasswordAuthentication pwd = new PasswordAuthentication(strUser, strPwd);
return pwd;
}
}