Interface IMailTemplate
Version:
日本語翻訳に関する免責事項
このページの翻訳はAIによって自動的に行われました。可能な限り正確な翻訳を心掛けていますが、原文と異なる表現や解釈が含まれる場合があります。正確で公式な情報については、必ず英語の原文をご参照ください。
A strongly typed entity interface for mail templates.
Inherited Members
Namespace: Stylelabs.M.Sdk.Contracts.Notifications
Assembly: Stylelabs.M.Sdk.dll
Syntax
Properties
Name
Gets or sets the name.
Declaration
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
GetBody(CultureInfo)
Gets the body.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| CultureInfo | culture |
The culture. |
Returns
| Type | Description |
|---|---|
| System.String |
The body. |
GetDescription(CultureInfo)
Gets the description.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| CultureInfo | culture |
The culture. |
Returns
| Type | Description |
|---|---|
| System.String |
The description. |
GetSubject(CultureInfo)
Gets the subject.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| CultureInfo | culture |
The culture. |
Returns
| Type | Description |
|---|---|
| System.String |
The subject |
GetTemplateVariables()
Gets the template variables.
Declaration
Returns
| Type | Description |
|---|---|
| IList<TemplateVariable> |
A list of template variables. |
SetBody(CultureInfo, String)
Sets the body.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| CultureInfo | culture |
The culture. |
| System.String | body |
The body. |
SetDescription(CultureInfo, String)
Sets the description.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| CultureInfo | culture |
The culture. |
| System.String | description |
The description. |
SetSubject(CultureInfo, String)
Sets the subject.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| CultureInfo | culture |
The culture. |
| System.String | subject |
The subject. |
SetTemplateVariables(IEnumerable<TemplateVariable>)
Sets the template variables.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<TemplateVariable> | variables |
A collection of template variables. |