Table of Contents

Class EmailSendResult

Namespace
CMS.EmailEngine
Assembly
CMS.EmailEngine.dll

Represents state of the send operation made by an instance of IEmailClient.

public record EmailSendResult
Inheritance
object
EmailSendResult
Extension Methods

Constructors

EmailSendResult(bool, string)

Creates instance of EmailSendResult.

public EmailSendResult(bool success, string sendResult = null)

Parameters

success bool

true indicates that the send operation was successful.

sendResult string

Allows to pass details about the send operation.

Properties

SendResult

May contain details about the send operation in case of failure.

public string SendResult { get; init; }

Property Value

string

Success

Indicates if the send operation was successful or not.

public bool Success { get; init; }

Property Value

bool

See Also

SendEmail(EmailMessage, CancellationToken)