Reputation: 10638
Is there any way to know when a message is moved from a folder to another in the explorer view? Some event I can handle?
I need to do some things just when a message is moved from one folder to another.
Upvotes: 0
Views: 98
Reputation: 49395
You can handle the ItemAdd
event on the target folder where items are moved.
Also you may find the Folder.BeforeItemMove event helpful. It is fired when an item is about to be moved or deleted from a folder, either as a result of user action or through program code.
Upvotes: 1