Delete email from inbox and also delete it from deleted-items folder via rule->script
问题 I created a rule, that starts a VBA-script depending on the subject of a received email (Rule: Subject "MY_SUBJECT" -> start script). The VBA script is then doing some stuff and then it should finally delete the original email. This part is easy: Sub doWorkAndDeleteMail(Item As Outlook.MailItem) ' doSomething: ' delete email from inbox Item.Delete End Sub Now the email will sit in the deleted-items-folder. But what I need to achieve is, to also delete this mail from the deleted-items folder.