Interface ISMTPConfiguration
- All Known Implementing Classes:
SMTPConfiguration
public interface ISMTPConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionReturns the From address for sending emails.Returns the Reply-To address for sending emails.Returns the host name for SMTP.int
Returns the port number for SMTP.Returns the user name for SMTP authentication.Returns the password for SMTP authentication.void
setFromAddress
(String fromAddress) Sets the From address for SMTP to the specified address.void
setReplyToAddress
(String replyToAddress) Sets the Reply-To address for SMTP to the specified address.void
setSMTPHost
(String host) Sets the host name for SMTP to the specified value.void
setSMTPPort
(int port) Sets the port number for SMTP to the specified value.void
setUserName
(String userName) Sets the user name for SMTP authentication.void
setUserPass
(String userPass) Sets the password name for SMTP authentication.void
setUseSSLSMTP
(boolean useSSLSMTP) Sets whether to use SSL for SMTP.boolean
Returns whether to use SSL for SMTP.
-
Method Details
-
useSSLSMTP
boolean useSSLSMTP()Returns whether to use SSL for SMTP.- Returns:
- true if SSL is used, false otherwise
-
setUseSSLSMTP
void setUseSSLSMTP(boolean useSSLSMTP) Sets whether to use SSL for SMTP.- Parameters:
useSSLSMTP
- true if SSL is to be used, false otherwise
-
getSMTPPort
int getSMTPPort()Returns the port number for SMTP.- Returns:
- the port number
-
setSMTPPort
void setSMTPPort(int port) Sets the port number for SMTP to the specified value.- Parameters:
port
- the port number to set
-
getSMTPHost
String getSMTPHost()Returns the host name for SMTP.- Returns:
- the host name
-
setSMTPHost
Sets the host name for SMTP to the specified value.- Parameters:
host
- the host name to set
-
getUserName
String getUserName()Returns the user name for SMTP authentication.- Returns:
- the SMTP user name
-
setUserName
Sets the user name for SMTP authentication.- Parameters:
userName
- the user name to set
-
getUserPass
String getUserPass()Returns the password for SMTP authentication.- Returns:
- the SMTP password
-
setUserPass
Sets the password name for SMTP authentication.- Parameters:
userPass
- the password to set
-
getFromAddress
String getFromAddress()Returns the From address for sending emails.- Returns:
- the from address
-
setFromAddress
Sets the From address for SMTP to the specified address.- Parameters:
fromAddress
- the address from which emails will be sent
-
getReplyToAddress
String getReplyToAddress()Returns the Reply-To address for sending emails.- Returns:
- the address where replies should go
-
setReplyToAddress
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
-