我在 Outlook 2010 中使用 VBA,并且正在尝试创建一个函数,该函数将从 Active Directory 中检索选定的用户主文件夹路径。
以下代码是一个具有保存目的地的简单弹出窗口。
Sub SaveSelected()
'Declaration
Dim myItems, myItem, myAttachments, myAttachment
Dim myOrt As String
Dim myOLApp As New Outlook.Application
Dim myOlExp As Outlook.Explorer
Dim myOlSel As Outlook.Selection
Dim objFSO As Object
Dim intCount As Integer
'Ask for destination folder
myOrt = InputBox("Destination", "Save Attachments", "\\server\home\VARIABLE\")
End Sub
我希望变量来自 AD,具体取决于当前选择的电子邮件。
例如,我收到了来自 Jimmy@home.com 的电子邮件,然后我选择了来自 jimmy@home.com 的电子邮件,我希望能够检索
\服务器\主目录\吉米
并使用“jimmy”作为我的变量。如果这是可能的,任何帮助将不胜感激。