user3714613
user3714613

Reputation: 13

avoid deleting attachments in outlook using addin programming

I wonder if there is any way to avoid deleting attachments in outlook mailItem using code either with right clicking and select remove or delete by pressing delete key.

I didn't find any solution like [beforeAttachment] event for it.

Upvotes: 1

Views: 94

Answers (1)

Reg Edit
Reg Edit

Reputation: 6916

Removing attachments is only committed if the MailItem is then saved. Therefore one thing you could do is add an event handler for the AttachmentRemove event, and set a flag if the event fires. Armed with the knowledge that an attachment has been removed, you could then deny attempts to save the MailItem, by cancelling the Write event or by whatever means works best with your code.

Upvotes: 1

Related Questions