BulkDetectDuplicatesRequest.SendEmailNotification Property

Definition

Gets or sets a value that indicates whether an email notification is sent after the asynchronous system job that detects multiple duplicate records finishes running. Required.

public:
 property bool SendEmailNotification { bool get(); void set(bool value); };
public bool SendEmailNotification { get; set; }
member this.SendEmailNotification : bool with get, set
Public Property SendEmailNotification As Boolean

Property Value

true if an email notification should be sent after the job to detect multiple duplicate records is finished running or has failed; otherwise, false.

Remarks

If you set this property to true, the following requirements also apply:

If you set the SendEmailNotification property to false, the TemplateId, ToRecipients, and CCRecipients properties are not used in the BulkDetectDuplicatesRequest class. We recommend that you set the unused properties to the following values:

TemplateId = Guid.Empty;
ToRecipients = Array.Empty<Guid>();
CCRecipients = Array.Empty<Guid>();

Applies to