admin
2021-05-19 a1be6075c6b1365a7abc66bf559d6058039248ab
fanli/src/main/java/com/yeshi/fanli/util/email/MyAuthenticator.java
@@ -1,21 +1,21 @@
package com.yeshi.fanli.util.email;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
public class MyAuthenticator extends Authenticator {
   String userName = null;
   String password = null;
   public MyAuthenticator() {
   }
   public MyAuthenticator(String username, String password) {
      this.userName = username;
      this.password = password;
   }
   protected PasswordAuthentication getPasswordAuthentication() {
      return new PasswordAuthentication(userName, password);
   }
}
package com.yeshi.fanli.util.email;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
public class MyAuthenticator extends Authenticator {
   String userName = null;
   String password = null;
   public MyAuthenticator() {
   }
   public MyAuthenticator(String username, String password) {
      this.userName = username;
      this.password = password;
   }
   protected PasswordAuthentication getPasswordAuthentication() {
      return new PasswordAuthentication(userName, password);
   }
}