Interface SmtpEmailProfile.ConnectionSettings
- Enclosing interface:
- SmtpEmailProfile
public static interface SmtpEmailProfile.ConnectionSettings
The connection settings used for establishing a connection to an SMTP server
- 
Method Summary
- 
Method Details- 
getHostnameString getHostname()- Returns:
- the hostname of the SMTP server
 
- 
getPortint getPort()- Returns:
- the port that the SMTP server is listening to
 
- 
isTlsEnabledboolean isTlsEnabled()- Returns:
- true if SSL / TLS is enabled, false if SSL / TLS is disabled
 
- 
isStartTlsEnabledboolean isStartTlsEnabled()- Returns:
- true if Start TLS is enabled, false if Start TLS is disabled
 
- 
getTlsProtocolsCollection<String> getTlsProtocols()- Returns:
- the TLS protocols enabled
 
- 
getTimeoutlong getTimeout()- Returns:
- the timeout value in milliseconds, used for both SMTP socket connect AND read timeout
 
- 
isDebugEnabledboolean isDebugEnabled()- Returns:
- true if debug is enabled, false if debug is disabled
 
 
-