Bonediggler1
Technical User
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!
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!