Getting messageID from email in Outlook VBA 2003

后端 未结 1 1403
时光说笑
时光说笑 2021-01-14 12:33

Is there a easy way to get the current shown (preferably selected) message-ID via VBA ? without having to buy Redemption or some other package..

I n

相关标签:
1条回答
  • 2021-01-14 13:31

    Do you mean the unique ID for the message? Try the EntryID Property:

    ActiveExplorer.Selection.Item(1).EntryID
    

    FYI PropertyAccessor was added in Outlook 2007, you wouldn't see it in 2003.

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