package com.java.mail;
import java.util.Properties;

	

	public class MailInfo {
		private String mailServerHost; 
		private String mailServerPort;
		private String fromAddress;
		private String toAddress;
		private String username;
		private String password;
		private boolean validate = false;
		private String subject;
		private String content;
		private String[] attachFileNames;
		
		public Properties getProperties() {
			Properties p = new Properties();
			p.put("mail.smtp.host", this.mailServerHost);
			p.put("mail.smtp.port", this.mailServerPort);
			p.put("mail.smtp.auth", validate ? "true" : "false");
			return p;
		}

		public String getMailServerHost() {
			return mailServerHost;
		}

		public void setMailServerHost(String mailServerHost) {
			this.mailServerHost = mailServerHost;
		}

		public String getMailServerPort() {
			return mailServerPort;
		}

		public void setMailServerPort(String mailServerPort) {
			this.mailServerPort = mailServerPort;
		}

		public String getFromAddress() {
			return fromAddress;
		}

		public void setFromAddress(String fromAddress) {
			this.fromAddress = fromAddress;
		}

		public String getToAddress() {
			return toAddress;
		}

		public void setToAddress(String toAddress) {
			this.toAddress = toAddress;
		}

		public String getUsername() {
			return username;
		}

		public void setUsername(String username) {
			this.username = username;
		}

		public String getPassword() {
			return password;
		}

		public void setPassword(String password) {
			this.password = password;
		}

		public boolean isValidate() {
			return validate;
		}

		public void setValidate(boolean validate) {
			this.validate = validate;
		}

		public String getSubject() {
			return subject;
		}

		public void setSubject(String subject) {
			this.subject = subject;
		}

		public String getContent() {
			return content;
		}

		public void setContent(String content) {
			this.content = content;
		}

		public String[] getAttachFileNames() {
			return attachFileNames;
		}

		public void setAttachFileNames(String[] attachFileNames) {
			this.attachFileNames = attachFileNames;
		}

}
最近下载更多
1358849392  LV21 2022年12月27日
moomin709  LV24 2022年7月6日
瓜不皮  LV15 2020年12月9日
kayok  LV19 2019年4月17日
2469684164  LV10 2019年3月16日
落雪飞花  LV6 2018年12月7日
Joyyoe  LV4 2018年10月9日
nanjing2017  LV15 2017年9月8日
hkp0521  LV7 2017年8月23日
cas  LV9 2017年5月27日
最近浏览更多
annazhang  LV29 2023年4月7日
Tuxxxxx  LV3 2023年1月3日
1358849392  LV21 2022年12月27日
不想起  LV10 2022年10月15日
moomin709  LV24 2022年7月6日
Rommel  LV27 2022年5月11日
伊不归  LV6 2022年4月20日
WDgxl2  LV2 2022年2月10日
山鬼非鬼  LV1 2021年9月29日
zhaojialiang  LV7 2021年5月14日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友