move sent items

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 2 pst files, one for work and one for my personal use, i used rules to move incoming mail from my personal account into the personal pst, but how do i get my sent items into another pst and not just copies?
 
Unfortunately sent e-mails are stored in the Sent Items of the default
delivery location and the Rules only allow you to move a copy there isnt
any way to accomplish what you are wanting.

I hope this information is helpful.

Robert Findlay
Partner Technical Lead -- Outlook/Office Setup
Microsoft Technical Support for Platforms and Business Applications


--------------------
Thread-Topic: move sent items
thread-index: AcQnN+3pJefI2fwZRF+1809oD3JvOQ==
X-WN-Post: microsoft.public.outlook.program_vba
From: "=?Utf-8?B?am9obg==?=" <[email protected]>
Subject: move sent items
Date: Tue, 20 Apr 2004 17:31:04 -0700
Lines: 1
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="Utf-8"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Content-Class: urn:content-classes:message
Importance: normal
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
Newsgroups: microsoft.public.outlook.program_vba
Path: cpmsftngxa10.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.outlook.program_vba:37721
NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
X-Tomcat-NG: microsoft.public.outlook.program_vba

I have 2 pst files, one for work and one for my personal use, i used rules
to move incoming mail from my personal account into the personal pst, but
how do i get my sent items into another pst and not just copies?
 
If you already have a rule working to put a copy of the sent item in the
right place, turn off Outlook's option in Tools | Options to save message to
Sent Items and add a second rule to handle outgoing messages not handled by
the first rule.

Since you posted in a programming forum, monitoring the Sent Items folder
with the MAPIFolder.Items.ItemAdd event would also be an option. When the
event fires, it passes the Item added to the procedure, and you can then use
the Move method to move the item.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



john said:
I have 2 pst files, one for work and one for my personal use, i used rules
to move incoming mail from my personal account into the personal pst, but
how do i get my sent items into another pst and not just copies?
 
Back
Top