K
Keith G Hicks
I'm confused about this. I have a routine that sends out some mail messages
and all that works fine. I want to have the messages go out so that they
request read AND delivery receipts. Here's what I've done:
From what I've learned, the first line lets me add a request for a read
receipt and it lets me specify to whom that receipt goes. Is this correct?
EmailMsg.Headers.Add("Disposition-Notification-To", mainDLNPSender)
Second, all I found on delivery receipts was what I did below. I'm guessing
that the receipt would go to the SENDER or is it going to the FROM? Or is it
going somewhere else? Is there a way to specify who gets the delivery
receipt like I did above with the read receipt?
EmailMsg.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess
+ DeliveryNotificationOptions.OnFailure
Thanks,
Keith
and all that works fine. I want to have the messages go out so that they
request read AND delivery receipts. Here's what I've done:
From what I've learned, the first line lets me add a request for a read
receipt and it lets me specify to whom that receipt goes. Is this correct?
EmailMsg.Headers.Add("Disposition-Notification-To", mainDLNPSender)
Second, all I found on delivery receipts was what I did below. I'm guessing
that the receipt would go to the SENDER or is it going to the FROM? Or is it
going somewhere else? Is there a way to specify who gets the delivery
receipt like I did above with the read receipt?
EmailMsg.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess
+ DeliveryNotificationOptions.OnFailure
Thanks,
Keith