You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
445 B
14 lines
445 B
package Base;
|
|
|
|
public class Email_settings {
|
|
public static final String SMTP_HOST = "smtp.qq.com";
|
|
// 邮箱服务器端口
|
|
public static final String SMTP_PORT = "587";
|
|
// 发件人邮箱
|
|
public static final String FROM_EMAIL = "835981889@qq.com";
|
|
// 发件人邮箱授权码
|
|
public static final String EMAIL_PASSWORD = "fpqfprqznbvdbcdf";
|
|
// 是否启用SSL
|
|
public static final boolean SSL_ENABLE = true;
|
|
}
|