Table of Contents

Class SendTestEmail

Namespace
Kentico.Xperience.Admin.Base.UIPages
Assembly
Kentico.Xperience.Admin.Base.dll

Email detail page.

[UIPageLocation(PageLocationEnum.Dialog)]
[UIEvaluatePermission("Update")]
public sealed class SendTestEmail : ModelEditPage<EmailModel>, IPage
Inheritance
object
SendTestEmail
Implements
Inherited Members
Extension Methods

Constructors

SendTestEmail(IFormItemCollectionProvider, IFormDataBinder, IEmailClient, IEventLogService)

Initializes a new instance of the SendTestEmail class.

public SendTestEmail(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IEmailClient emailClient, IEventLogService eventLogService)

Parameters

formItemCollectionProvider IFormItemCollectionProvider
formDataBinder IFormDataBinder
emailClient IEmailClient
eventLogService IEventLogService

Properties

Model

Gets edited model that represents the form.

protected override EmailModel Model { get; }

Property Value

EmailModel

SuccessMessageKey

Gets or sets the success message displayed after submitting the form.

protected override string SuccessMessageKey { get; }

Property Value

string

Methods

ConfigurePage()

Set up page's configuration. Configures the submit action.

public override Task ConfigurePage()

Returns

Task

ProcessFormData(EmailModel, ICollection<IFormItem>)

Stores the model and creates a response for the Submit(FormSubmissionCommandArguments) command.

protected override Task<ICommandResponse> ProcessFormData(EmailModel model, ICollection<IFormItem> formItems)

Parameters

model EmailModel

Model to be stored.

formItems ICollection<IFormItem>

Form items with bound component values.

Returns

Task<ICommandResponse>

The response to be used for the Submit(FormSubmissionCommandArguments) command.