IsDeliveryReceiptRequested property

bool? get IsDeliveryReceiptRequested
Gets or sets a value indicating whether a read receipt is requested for the e-mail message.

Implementation

bool? get IsDeliveryReceiptRequested =>
    this.PropertyBag[EmailMessageSchema.IsDeliveryReceiptRequested] as bool?;
set IsDeliveryReceiptRequested (bool? value)

Implementation

set IsDeliveryReceiptRequested(bool? value) =>
    this.PropertyBag[EmailMessageSchema.IsDeliveryReceiptRequested] = value;