|
|
|
|
@ -55,6 +55,11 @@ public class MailProperties {
@@ -55,6 +55,11 @@ public class MailProperties {
|
|
|
|
|
*/ |
|
|
|
|
private String password; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Protocol used by the SMTP server. |
|
|
|
|
*/ |
|
|
|
|
private String protocol; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Default MimeMessage encoding. |
|
|
|
|
*/ |
|
|
|
|
@ -107,6 +112,14 @@ public class MailProperties {
@@ -107,6 +112,14 @@ public class MailProperties {
|
|
|
|
|
this.password = password; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProtocol() { |
|
|
|
|
return this.protocol; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setProtocol(String protocol) { |
|
|
|
|
this.protocol = protocol; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Charset getDefaultEncoding() { |
|
|
|
|
return this.defaultEncoding; |
|
|
|
|
} |
|
|
|
|
|