Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forward Mail in Outlook 1

Status
Not open for further replies.

Bonediggler1

Technical User
Jul 2, 2008
156
US
Hi

I have what I think is a quick question. I need to be able to forward a mail item via vba from one mailbox to another. I am using the following code so far which works:

(code)

With item
.to = "Blah Blah"
.Subject = "Blah"
.CC = " "
.Send
End With

However, I need to retain the item in the original mailbox. ".Send" moves it entirely to the new mailbox. I tried using ".Forward" but this doesn't seem to do anything.

Thank you!
 
Set myItem = item.Forward
myItem.Recipients.Add "Blah blah"
myItem.Send

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top