Outlook) (MailItem.ReceivedByEntryID 屬性
會傳回 String ,代表傳遞郵件訊息之傳輸提供者所設定之真實收件者的 EntryID 。 唯讀。
語法
expression。 ReceivedByEntryID
表達 代表 MailItem 物件的 變數。
註解
此屬性相當於 MAPI 屬性 PidTagReceivedByEntryId。
如果您要在 Microsoft Visual Basic 或 Microsoft Visual Basic for Applications (VBA) 解決方案中取得此屬性,基於某些類型問題,而不是直接參考ReceivedByEntryID,您應該透過MailItem.PropertyAccessor屬性所傳回的PropertyAccessor物件取得屬性,並指定PidTagReceivedByEntryId屬性及其 MAPI proptag 命名空間。 下列 VBA 程式碼範例顯示解決方法。
Public Sub GetReceiverEntryID()
Dim objInbox As Outlook.Folder
Dim objMail As Outlook.MailItem
Dim oPA As Outlook.PropertyAccessor
Dim strEntryID As String
Const PidTagReceivedByEntryId As String = "http://schemas.microsoft.com/mapi/proptag/0x003F0102"
Set objInbox = Application.Session.GetDefaultFolder(olFolderInbox)
Set objMail = objInbox.Items(1)
Set oPA = objMail.PropertyAccessor
strEntryID = oPA.BinaryToString(oPA.GetProperty(PidTagReceivedByEntryId))
Debug.Print strEntryID
Set objInbox = Nothing
Set objMail = Nothing
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。