public interface ISMTPConfiguration
Modifier and Type | Method and Description |
---|---|
String |
getFromAddress() |
String |
getReplyToAddress() |
String |
getSMTPHost() |
int |
getSMTPPort() |
String |
getUserName() |
String |
getUserPass() |
void |
setFromAddress(String fromAddress) |
void |
setReplyToAddress(String replyToAddress) |
void |
setSMTPHost(String host) |
void |
setSMTPPort(int port) |
void |
setUserName(String userName) |
void |
setUserPass(String userPass) |
void |
setUseSSLSMTP(boolean useSSLSMTP) |
boolean |
useSSLSMTP() |
boolean useSSLSMTP()
void setUseSSLSMTP(boolean useSSLSMTP)
useSSLSMTP
- the useSSLSMTP to setint getSMTPPort()
void setSMTPPort(int port)
port
- the SMTPPort to setString getSMTPHost()
void setSMTPHost(String host)
host
- the sMTPHost to setString getUserName()
void setUserName(String userName)
userName
- the userName to setString getUserPass()
void setUserPass(String userPass)
userPass
- the userPass to setString getFromAddress()
void setFromAddress(String fromAddress)
fromAddress
- The address from which the mail will be sentString getReplyToAddress()
void setReplyToAddress(String replyToAddress)
replyToAddress
- the address which will be set as reply-to address (if not left empty)