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
-
objectEmailSendResult
- Extension Methods
Constructors
EmailSendResult(bool, string)
Creates instance of EmailSendResult.
public EmailSendResult(bool success, string sendResult = null)
Parameters
success
booltrue
indicates that the send operation was successful.sendResult
stringAllows 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