Outlook VBA - Wait a few seconds then execute - Stack Overflow
Try: Sub printradu(Item As Outlook.MailItem) 'Wait 10 seconds then execute the code below: Application.Wait(Now + TimeValue("0:00:10")) MessageAndAttachmentProcessor Item, True End Sub Or: Public Declare Sub Sleep Lib "kernel32" (ByVal ......