All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gdxsoft.easyweb.utils.Mail.MailAuth Maven / Gradle / Ivy

Go to download

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy