- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取电子邮件地址列表的所有外出消息。
我通过调用“.resolveAll”来强制控制名称功能。
如何获取我在屏幕上看到的外出消息,并将其复制到 Excel 中的字段?
'Vba
Dim i As Integer
Dim Adres As String
i = 2 'Beginning at Row 2, Column 'H'
Do While Cells(i, 8).Value <> ""
Adres = Cells(i, 8).Value
With objMail
.To = Adres
.Display
.Recipients.ResolveAll
' ???How to get de message???
End With
MsgBox ("OOO")
i = i + 1
Loop
最佳答案
您不太可能像这样访问另一个收件箱,但出于好奇:
Private Sub readOutOfOfficeMessage()
' http://social.msdn.microsoft.com/Forums/en-US/outlookdev/thread/64ab56a0-005f-4ae7-845e-b7b476b9b11d/
Dim myRecipient As recipient
Dim sharedInbox As Folder
Dim currItem As MailItem
Dim oStorageItem As StorageItem
' Mail with out of office message
Set currItem = ActiveInspector.currentItem
' For testing - only one recipient
On Error Resume Next
Set myRecipient = currItem.Recipients(1)
On Error GoTo 0
If Not myRecipient Is Nothing Then
Debug.Print myRecipient.name
' GetSharedDefaultFolder is more used for
' other people's calendars, other folders, not inboxes
Set sharedInbox = Session.GetSharedDefaultFolder(myRecipient, olFolderInbox)
'sharedInbox.Display
Set oStorageItem = sharedInbox.GetStorage("IPM.Note.Rules.OofTemplate.Microsoft", olIdentifyByMessageClass)
Debug.Print oStorageItem.body
End If
End Sub
Private Sub readMyOwnOutOfOfficeMessage()
' http://social.msdn.microsoft.com/Forums/en-US/outlookdev/thread/64ab56a0-005f-4ae7-845e-b7b476b9b11d/
Dim myInbox As Folder
Dim oStorageItem As StorageItem
Set myInbox = Session.GetDefaultFolder(olFolderInbox)
'myInbox.Display
Set oStorageItem = myInbox.GetStorage("IPM.Note.Rules.OofTemplate.Microsoft", olIdentifyByMessageClass)
Debug.Print oStorageItem.body
End Sub
关于excel - 获取不在办公室的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51188032/
我需要合并 2 个单元格并在合并的单元格中有一个值。 我的(失败的)尝试: #1 Excel.run(function (context) { const newSheet = context
有人知道如何以编程方式启用/禁用 Outlook 2007 中外出自动回复的实际状态吗? 已经在 VS 2008 中搜索对象浏览器并找到枚举 Microsoft.Office.Interop.Outl
我的任务是为 ASP.NET MVC 提供功能,允许用户输入他们的电子邮件地址,按下提交按钮,他们的电子邮件地址将被添加到 Office 365 帐户中的现有通讯组。 我对 Office 365 AP
目前,我正在关注这篇文章https://dev.outlook.com/restapi/tutorial/dotnet .一切正常,但我无法从访问 token 中检索用户的电子邮件地址。 priva
我已经添加了公告应用程序并向其中添加了一些项目,现在我想从我的公告列表中获取这些项目,所以我使用了以下代码 token_Obtained_During_first_time_Login:这是我第一次使
我构建了一个 excel 插件,它使用数据库中的数据填充工作表。我还添加了一些样式并使用 FreezePanes 锁定了一些行和列。 worksheet.Activate(); worksheet.A
我有 Windows Server 2008 R2 机器,它有 Power Shell v1.0。我想使用带有 C# 的 Power Shell 连接到 MS 365 在线服务。我已经安装了 Offi
我想知道是否可以将 Azure AD 用户配置文件详细信息(使用位置、国家或地区、办公室)获取到 azure Sentinel 日志中? Kusto 查询会是什么? 最佳答案 此功能将作为 Azure
我是一名优秀的程序员,十分优秀!