In MS Outlook, report all sent-messages that haven't received replies

前端 未结 2 1951
别那么骄傲
别那么骄傲 2021-02-04 16:35

I send out a lot of emails each day and often fail to keep track of which ones actually get replied to.

Is there a way I can use a VBA script to look at say all the sent

相关标签:
2条回答
  • 2021-02-04 17:07

    As Jez suggested, look at the message id of the sent message (you can access it using MailItem.PropertyAccessor), you can then try to find the matching message in your inbox folder by reading the PR_TRANSPORT_MESSAGE_HEADERS property (again, use MailItem.PropertyAccessor, the property will contain the MIME headers from the main MIME part of the message) and extracting the "In-Reply-To" and "References" headers.
    You can see the relevant properties along with their property tags and DASL names in OutlookSpy (click IMessage button).

    0 讨论(0)
  • 2021-02-04 17:26

    i know you can track whether it was read / received. follow this tutorial, or a different for your outlook version

    http://office.microsoft.com/en-us/outlook-help/get-delivery-and-read-receipt-confirmations-HP010080428.aspx#BM1

    0 讨论(0)
提交回复
热议问题