public interface IEmailBodyData
extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBodyCharset()
Returns the body text charset
|
java.lang.String |
getBodyEncoding()
Returns the body text encoding
|
NameValueItem[] |
getBodyEncodingParameters()
Returns the body text encoding parameters
|
java.util.Locale |
getBodyLanguage()
Returns the body text language
|
java.lang.String |
getBodyText()
Returns the body text
|
java.lang.String |
getFilePath()
Returns the physical file path of the email body.
|
void |
setBodyCharset(java.lang.String charset)
Sets the charset of the body text
|
void |
setBodyEncoding(java.lang.String mimeType)
Sets the encoding of the body text
|
void |
setBodyEncoding(java.lang.String mimeType,
java.lang.String charset,
NameValueItem[] encodingParameters)
Sets the encoding of the body text
|
void |
setBodyEncodingParameters(NameValueItem[] encodingParameters)
Sets the encoding parameters of the body text
|
void |
setBodyLanguage(java.util.Locale locale)
Set the language of the body text (can be empty)
|
void |
setBodyText(java.lang.String bodyText)
Sets the email body text
|
void |
setFilePath(java.lang.String filePath)
LLworkplace transfers the email file into a durable store if allowed.
|
void setBodyText(java.lang.String bodyText)
bodyText
- body textvoid setBodyEncoding(java.lang.String mimeType)
mimeType
- mime type of the text (mandatory)void setBodyCharset(java.lang.String charset)
charset
- Charset in use (default: US-ASCII) RFC-2046 (can be null)void setBodyEncodingParameters(NameValueItem[] encodingParameters)
encodingParameters
- Additional parameters of the encoding (has to be in email RFC-4021 format) - (can be null)void setBodyEncoding(java.lang.String mimeType, java.lang.String charset, NameValueItem[] encodingParameters)
mimeType
- mime type of the text (mandatory)charset
- Charset in use (default: US-ASCII) RFC-2046 (can be null)encodingParameters
- Additional parameters of the encoding (has to be in email RFC-4021 format) - (can be null)void setBodyLanguage(java.util.Locale locale)
locale
- Language and optionally country for the body textjava.lang.String getBodyText()
java.lang.String getBodyEncoding()
java.lang.String getBodyCharset()
NameValueItem[] getBodyEncodingParameters()
java.util.Locale getBodyLanguage()
java.lang.String getFilePath()
void setFilePath(java.lang.String filePath)
filePath
- physical email file path