Outlook 2013 'Run a script' rule has disappeared

后端 未结 3 1569
心在旅途
心在旅途 2021-01-20 14:10

I have some rules for work in outlook 2013 - however following my laptop crashing the other day, I can no longer run any rules, they simply do not work (I don\'t even get a

3条回答
  •  暖寄归人
    2021-01-20 14:54

    here is a quick and dirty test to check whether vba code runs at all when email arrives

    put it into "ThisOutLookSession" which is under "Microsoft Office Outlook Objects"

    then send yourself an email ... if vba runs then you should see a popup

    it will not solve your problem, but it will provide more info to help narrow down the cause

    Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
        MsgBox "you have mail"
    End Sub
    

提交回复
热议问题