Win 7, Outlook 2013 I use VBA code that takes an action on some of the files that arrive in my inbox. However, I have to click/run button to run this macro.
Is there a way that this code could run automatically when an email arrives?
I have tried an Outlook rule to run the script but not successful.
I tried this, but this works only when once I run the macro
Private Sub Application_NewMail()
Call GetAttachments_From_Inbox (My Macro)
End Sub
I specifically use a script I run as a rule, applied to all messages. This gives you easy and clear access to the mail item you receive. Since you want to run this on each message setting up
WithEvents
on your inbox is probably your best bet.For example:
You can create a listeners for an Outlook folder as follows:
You can do this for as many folders as you want, too.
You can then assign the
ItemAdd
method to each of them like:All this code can go in ThisOutlookSession.