Search results

  1. S

    Untitled Attachment

    Outlook 2k3/2k10, use macro : Sub ForwardAsAttach() On Error Resume Next Dim objItem As Outlook.MailItem If Application.ActiveExplorer.Selection.Count = 0 Then MsgBox ("No item selected") Exit Sub End If For Each objItem In Application.ActiveExplorer.Selection Set...
  2. S

    VBA for IMAP shared folder

    > >40 people using the shared mailbox that want to move mail into it! << hello ! everytime i need change 'Set MoveToFolder = ns.Folders("Mailbox").Folders(targetFolder)' for people personaly for Example : ns.Folders("user1").Folders(targetFolder)'...
  3. S

    VBA for IMAP shared folder

    Find working script on this site 'Outlook VB Macro to move selected mail item(s) to a target folder Sub MoveToFolder(targetFolder) On Error Resume Next Dim ns As Outlook.NameSpace Dim MoveToFolder As Outlook.MAPIFolder Dim objItem As Outlook.MailItem Set ns =...
  4. S

    VBA for IMAP shared folder

    The IMAP shared folder from email "abc@domain.ru" is connected to my Outlook imap account. And sometimes i need move there email from my IMAP account. I'd like to create a macro that I can move selected emails in this IMAP shared folder. P.S. Folder Need, Its not subfolder! Example...
Back
Top