BulkDetectDuplicatesRequest.SendEmailNotification Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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:
- The caller must have
prvCreateEmailTemplate
andprvReadEmailTemplate
privileges in addition to the privileges that are needed to detect duplicate records. - You must specify a value for the BulkDetectDuplicatesRequest.ToRecipients property.
- For the email notification, use the email template or custom email templates. To customize these email templates, see Create templates for email and Customize an email template using the template editor.
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>();