3 articles Outlook

Outlook Macro to add email to Bcc and send it

  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 =…

outlook autoarchive won’t move imap message to arhive

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…