c-innovacion2/www/WEB-INF/class/com/tide/homepage/mail/SMTPAuthenticatior.java

12 lines
303 B
Java

package mail;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
public class SMTPAuthenticatior extends Authenticator{
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("creesy","snsekfA01!");
}
}