![]() |
|
#1
|
|||
|
|||
|
Apple gives you the option of reading an email first before archive or copying an email to archive instead of moving it .Outlook rules will allow you to receive an email that automatically gets transferred to another folder or archive file via a rule, but it does not leave a copy in the inbox. This is a problem for me since our corporation deletes all emails 60 days old. If I create such a rule, the email instantly goes to the archived folder but in doing so keeps me from seeing the message on my phone unless I were to create a whole bunch of individual folders. Is there a way to either: 1. receive an email in the Inbox and have it transfer to archive after being read 2. or receive an email in the Inbox and make a COPY into the archived folder? THANKS! |
|
#2
|
||||
|
||||
|
You can certainly use a rule to save a copy of an incoming message to a named folder. The original goes to Inbox.
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
#3
|
|||
|
|||
|
Quote:
|
|
#4
|
||||
|
||||
|
I don't have Outlook 2007 available to check , but in Outlook 2010, the option Move Copy to Folder is immediately below the option to Move to Folder .
If it is not present in 2007, you will need a macro script run from a rule e.g. Code:
Sub CopyToFolder(olItem As MailItem)
Dim oTargetFolder As Folder
Dim strFolderName As String
Dim oCopiedItem As MailItem
strFolderName = "Copies"
Set oTargetFolder = Session.GetDefaultFolder(olFolderInbox).folders(strFolderName)
Set oCopiedItem = olItem.Copy
oCopiedItem.Move oTargetFolder
lbl_Exit:
Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
#5
|
|||
|
|||
|
BTW, I have outlook 2010 but I'm not understanding what you're telling me to do.
|
|
#6
|
||||
|
||||
|
If you have Outlook 2010, then simply create a rule to move a copy of the incoming message to a folder. The opriginal remains in the Inbox, for you to read and delete.
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Setting up a rule to move emails from inbox to Archive, or AutoArchive, etc | EatVegetables | Outlook | 0 | 03-18-2014 05:21 AM |
| Can't archive some messages. | MCPRow | Outlook | 0 | 03-01-2013 08:44 AM |
| Archive rule based on Category | jerelp | Outlook | 0 | 02-18-2010 08:04 AM |
| Auto archive to the same archive doesn't work | boydgrossii | Outlook | 0 | 04-14-2009 11:18 AM |
| Opening messages/Code/custom archive | jdd2 | Outlook | 0 | 12-20-2005 08:55 AM |