Outlook Macro to add email to Bcc and send it Posted on October 2, 2017October 24, 2017 by dpejic It goes under thisOutlookSession Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim olRecip As Recipient Dim olMsg As String Dim res As Integer Dim olBcc As String On Error Resume Next ‘// set email address here olBcc = “Address@domain.com” Set olRecip = Item.Recipients.Add(olBcc) olRecip.Type = olBcc If Not olRecip.Resolve Then olMsg =…
Solved – 0×80070057 Error Outlook 2010 Posted on August 25, 2017August 25, 2017 by dpejic 0×80070057 Error Outlook 2010 This is a quite common error on Outlook 2010 x64. Error Code: An unknown error occurred, error code: 0×80070057 Symptom: It occurs when you try to add a new Exchange account in Outlook 2010 And in most cases because you try to use the AutoAccountSetup to create the newaccount Solution: For me, solution…
outlook autoarchive won’t move imap message to arhive Posted on July 10, 2017July 10, 2017 by dpejic Changing Archive to sent/receive date To change the Archive feature to function on the sent/received date of an item instead of on the modified date, you must have the following updates installed; Outlook 2007: The revised version of update KB2412171 (January 2011) or later. Outlook 2010: Hotfix KB2516474 (April 2010) or later (like Service Pack…