5

问题:使用 vbscript 处理传入的电子邮件。

展望版本:展望 2000

描述:我不能为此使用 VBA,因为我相信 Outlook 2000 不允许您从规则向导运行 VBA 脚本,因此我必须使用该Run a Program | VBScript方法。

我所知道的:我知道如何像这样处理来自 VBA 的电子邮件

Sub Sample(MyMail As MailItem)
    Dim strID As String, olNS As Outlook.NameSpace
    Dim olMail As Outlook.MailItem

    strID = MyMail.EntryID
    Set olNS = Application.GetNamespace("MAPI")
    Set olMail = olNS.GetItemFromID(strID)

    '~~> Rest of the code

    Set olMail = Nothing
    Set olNS = Nothing
End Sub

我也知道如何收件箱中的电子邮件上运行 vbscript。要在 OL2000 中运行 vbscript,您必须使用Run A Program并将其指向 vbs 文件。在Run A ScriptOL2000 中不可用。

我不知道的是:这就是我需要帮助的地方。如何在VBS中获取未命中邮件收件箱的邮件对象。一旦我得到对象,我就可以进行其余的必要操作。

4

1 回答 1

4

你是正确的,OL2000 不能从规则运行 VBA 宏,如果这篇文章是可信的。

这是我处理传入电子邮件的方式。它确实使用 VBA,但据我所知,在 VBScript 中没有办法这样做。

Private WithEvents Items As Outlook.Items 
Private Sub Application_Startup() 
  Dim olApp As Outlook.Application 
  Dim objNS As Outlook.NameSpace 
  Set olApp = Outlook.Application 
  Set objNS = olApp.GetNamespace("MAPI") 
  Set Items = objNS.GetDefaultFolder(olFolderInbox).Items 
End Sub
Private Sub Items_ItemAdd(ByVal item As Object) 

  On Error Goto ErrorHandler 
  Dim Msg As Outlook.MailItem 
  If TypeName(item) = "MailItem" Then
    Set Msg = item 
    '~~> do something with the new message here
  End If
ProgramExit: 
  Exit Sub
ErrorHandler: 
  MsgBox Err.Number & " - " & Err.Description 
  Resume ProgramExit 
End Sub

应将此代码粘贴到 ThisOutlookSession 模块中,然后重新启动 Outlook。

于 2012-07-13T16:50:32.953 回答