<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

Relativity.Services.DataContracts.DTOs.EmailNotifications.EmailNotificationStatus

Information about an attempt to send a single email.
public bool IsSent { get; set; }

If SMTP immediately rejected an email (e.g. invalid email format, or SMTP misconfiguration), it returns false. Otherwise returns true - but it does not mean that recipient received email with 100% guarantee. It means SMTP attempted to send an email.

public string Message { get; set; }

Detailed information about email status (e.g. exception details if sending an email has failed).

public string Recipient { get; set; }

Recipient of the email notification.