gpt4 book ai didi

outlook - 有没有办法通过 Outlook/Exchange 以编程方式调用电子邮件?

转载 作者:行者123 更新时间:2023-12-04 05:41:39 24 4
gpt4 key购买 nike

很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。如需帮助澄清这个问题以便重新打开它,visit the help center .




9年前关闭。




有谁知道这是否可能?除了记忆发件人和收件人都必须使用 Exchange 并且电子邮件必须在收件人端未读之外,我找不到太多关于这样做的信息。很少有需要这样做的情况,但即便如此,知道它还是有用的。

编辑

  • Outlook 2010 是我正在使用的版本。
  • 最佳答案

    “Recall This Message”的 FindControl ID 是 2511 ,因此您可以使用如下代码:

    Sub SendRecall()

    Dim obj As Object
    Dim msg As Outlook.mailItem
    Dim insp As Outlook.Inspector

    ' get selected item
    Set obj = ActiveExplorer.Selection.item(1)

    If TypeName(obj) = "MailItem" Then
    Set msg = obj
    Set insp = msg.GetInspector
    ' execute the command button for "Recall this message"
    With insp
    .Display
    .CommandBars.FindControl(, 2511).Execute
    .Close olDiscard
    End With
    End If
    End Sub

    在 Outlook 2003 中工作,您没有发布您的版本,所以我不确定此解决方案是否适合您。

    关于outlook - 有没有办法通过 Outlook/Exchange 以编程方式调用电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11196549/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com