Package com.mendix.modules.email
Class SMTPConfiguration
java.lang.Object
com.mendix.modules.email.SMTPConfiguration
- All Implemented Interfaces:
ISMTPConfiguration
Deprecated.
since 10.12.
Use Email Connector from Mendix Marketplace instead.
Represents an SMTP configuration.
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates an empty default SMTP configuration.SMTPConfiguration(int smtpPort, String smtpHost, String userName, String userPass, boolean useSSLSMTP, boolean checkServerIdentity, String fromAddress, String replyToAddress) Deprecated.Instantiate SMTPConfiguration using given parameters.SMTPConfiguration(int smtpPort, String smtpHost, String userName, String userPass, boolean useSSLSMTP, String fromAddress, String replyToAddress) Deprecated.Instantiate SMTPConfiguration using given parameters. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated.Returns whether to check server identity when using SSL.Deprecated.Returns the From address for sending emails.Deprecated.Returns the Reply-To address for sending emails.Deprecated.Returns the host name for SMTP.intDeprecated.Returns the port number for SMTP.Deprecated.Returns the username for SMTP authentication.Deprecated.Returns the password for SMTP authentication.voidsetFromAddress(String fromAddress) Deprecated.voidsetReplyToAddress(String replyToAddress) Deprecated.voidsetSMTPHost(String host) Deprecated.voidsetSMTPPort(int port) Deprecated.voidsetUserName(String userName) Deprecated.voidsetUserPass(String userPass) Deprecated.voidsetUseSSLSMTP(boolean useSSLSMTP) Deprecated.booleanDeprecated.Returns whether to use SSL for SMTP.
-
Constructor Details
-
SMTPConfiguration
public SMTPConfiguration()Deprecated.Creates an empty default SMTP configuration. -
SMTPConfiguration
public SMTPConfiguration(int smtpPort, String smtpHost, String userName, String userPass, boolean useSSLSMTP, String fromAddress, String replyToAddress) Deprecated.Instantiate SMTPConfiguration using given parameters.- Parameters:
smtpPort- smtp portsmtpHost- smtp hostuserName- user nameuserPass- passworduseSSLSMTP- use SSLfromAddress- from addressreplyToAddress- replyTo address
-
SMTPConfiguration
public SMTPConfiguration(int smtpPort, String smtpHost, String userName, String userPass, boolean useSSLSMTP, boolean checkServerIdentity, String fromAddress, String replyToAddress) Deprecated.Instantiate SMTPConfiguration using given parameters.- Parameters:
smtpPort- smtp portsmtpHost- smtp hostuserName- user nameuserPass- passworduseSSLSMTP- use SSLcheckServerIdentity- check server identityfromAddress- from addressreplyToAddress- replyTo address
-
-
Method Details
-
useSSLSMTP
public boolean useSSLSMTP()Deprecated.Description copied from interface:ISMTPConfigurationReturns whether to use SSL for SMTP.- Specified by:
useSSLSMTPin interfaceISMTPConfiguration- Returns:
- true if SSL is used, false otherwise
-
setUseSSLSMTP
Deprecated.Description copied from interface:ISMTPConfigurationSets whether to use SSL for SMTP.- Specified by:
setUseSSLSMTPin interfaceISMTPConfiguration- Parameters:
useSSLSMTP- true if SSL is to be used, false otherwise
-
getSMTPPort
public int getSMTPPort()Deprecated.Description copied from interface:ISMTPConfigurationReturns the port number for SMTP.- Specified by:
getSMTPPortin interfaceISMTPConfiguration- Returns:
- the port number
-
setSMTPPort
Deprecated.Description copied from interface:ISMTPConfigurationSets the port number for SMTP to the specified value.- Specified by:
setSMTPPortin interfaceISMTPConfiguration- Parameters:
port- the port number to set
-
getSMTPHost
Deprecated.Description copied from interface:ISMTPConfigurationReturns the host name for SMTP.- Specified by:
getSMTPHostin interfaceISMTPConfiguration- Returns:
- the host name
-
setSMTPHost
Deprecated.Description copied from interface:ISMTPConfigurationSets the host name for SMTP to the specified value.- Specified by:
setSMTPHostin interfaceISMTPConfiguration- Parameters:
host- the host name to set
-
getUserName
Deprecated.Description copied from interface:ISMTPConfigurationReturns the username for SMTP authentication.- Specified by:
getUserNamein interfaceISMTPConfiguration- Returns:
- the SMTP username
-
setUserName
Deprecated.Description copied from interface:ISMTPConfigurationSets the username for SMTP authentication.- Specified by:
setUserNamein interfaceISMTPConfiguration- Parameters:
userName- the username to set
-
getUserPass
Deprecated.Description copied from interface:ISMTPConfigurationReturns the password for SMTP authentication.- Specified by:
getUserPassin interfaceISMTPConfiguration- Returns:
- the SMTP password
-
setUserPass
Deprecated.Description copied from interface:ISMTPConfigurationSets the password name for SMTP authentication.- Specified by:
setUserPassin interfaceISMTPConfiguration- Parameters:
userPass- the password to set
-
getFromAddress
Deprecated.Description copied from interface:ISMTPConfigurationReturns the From address for sending emails.- Specified by:
getFromAddressin interfaceISMTPConfiguration- Returns:
- the from address
-
setFromAddress
Deprecated.Description copied from interface:ISMTPConfigurationSets the From address for SMTP to the specified address.- Specified by:
setFromAddressin interfaceISMTPConfiguration- Parameters:
fromAddress- the address from which emails will be sent
-
getReplyToAddress
Deprecated.Description copied from interface:ISMTPConfigurationReturns the Reply-To address for sending emails.- Specified by:
getReplyToAddressin interfaceISMTPConfiguration- Returns:
- the address where replies should go
-
setReplyToAddress
Deprecated.Description copied from interface:ISMTPConfigurationSets the Reply-To address for SMTP to the specified address. Set to null if no Reply-To headers should be included in emails.- Specified by:
setReplyToAddressin interfaceISMTPConfiguration- Parameters:
replyToAddress- the address to which email replies should go, or null if no such header should be included
-
checkServerIdentity
public boolean checkServerIdentity()Deprecated.Description copied from interface:ISMTPConfigurationReturns whether to check server identity when using SSL.- Specified by:
checkServerIdentityin interfaceISMTPConfiguration- Returns:
- true if server identity will be checked, false otherwise
-