Interface ISMTPConfiguration
- All Known Implementing Classes:
SMTPConfiguration
Deprecated.
since 10.12.
Use Email Connector from Mendix Marketplace instead.
Provides the interface for an SMTP configuration.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated.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.int
Deprecated.Returns the port number for SMTP.Deprecated.Returns the username for SMTP authentication.Deprecated.Returns the password for SMTP authentication.void
setFromAddress
(String fromAddress) Deprecated.since 9.23.void
setReplyToAddress
(String replyToAddress) Deprecated.since 9.23.void
setSMTPHost
(String host) Deprecated.since 9.23.void
setSMTPPort
(int port) Deprecated.since 9.23.void
setUserName
(String userName) Deprecated.since 9.23.void
setUserPass
(String userPass) Deprecated.since 9.23.void
setUseSSLSMTP
(boolean useSSLSMTP) Deprecated.since 9.23.boolean
Deprecated.Returns whether to use SSL for SMTP.
-
Method Details
-
useSSLSMTP
boolean useSSLSMTP()Deprecated.Returns whether to use SSL for SMTP.- Returns:
- true if SSL is used, false otherwise
-
setUseSSLSMTP
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets whether to use SSL for SMTP.- Parameters:
useSSLSMTP
- true if SSL is to be used, false otherwise
-
getSMTPPort
int getSMTPPort()Deprecated.Returns the port number for SMTP.- Returns:
- the port number
-
setSMTPPort
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets the port number for SMTP to the specified value.- Parameters:
port
- the port number to set
-
getSMTPHost
String getSMTPHost()Deprecated.Returns the host name for SMTP.- Returns:
- the host name
-
setSMTPHost
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets the host name for SMTP to the specified value.- Parameters:
host
- the host name to set
-
getUserName
String getUserName()Deprecated.Returns the username for SMTP authentication.- Returns:
- the SMTP username
-
setUserName
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets the username for SMTP authentication.- Parameters:
userName
- the username to set
-
getUserPass
String getUserPass()Deprecated.Returns the password for SMTP authentication.- Returns:
- the SMTP password
-
setUserPass
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets the password name for SMTP authentication.- Parameters:
userPass
- the password to set
-
getFromAddress
String getFromAddress()Deprecated.Returns the From address for sending emails.- Returns:
- the from address
-
setFromAddress
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets the From address for SMTP to the specified address.- Parameters:
fromAddress
- the address from which emails will be sent
-
getReplyToAddress
String getReplyToAddress()Deprecated.Returns the Reply-To address for sending emails.- Returns:
- the address where replies should go
-
setReplyToAddress
Deprecated.since 9.23. Use constructorSMTPConfiguration(int, String, String, String, boolean, String, String)
instead.Sets the Reply-To address for SMTP to the specified address. Set to null if no Reply-To headers should be included in emails.- Parameters:
replyToAddress
- the address to which email replies should go, or null if no such header should be included
-
checkServerIdentity
boolean checkServerIdentity()Deprecated.Returns whether to check server identity when using SSL.- Returns:
- true if server identity will be checked, false otherwise
-