IsDeliveryReceiptRequested property

bool? 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?;
void IsDeliveryReceiptRequested=(bool? value)

Implementation

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