DAVID POWELL
Senior Member
- Outlook version
- Outlook 2010 32 bit
- Email Account
- Exchange Server
This code is wiping out my original mail with text and html
I want to retain the original message and just add something at the top ?
add this : "This is Rejected"
Sub CommandButton6_click()
ChangeSubjectForward Item
End sub
Sub ChangeSubjectForward(Item)
Item.Subject = "Test"
Set myForward = Item.Forward
myForward.Recipients.Add "ccccc.ccccell@somewhere.com"
myForward.Body = "This is Rejected"
Item.Save
myForward.Send
End Sub
Thanks
david powell
I want to retain the original message and just add something at the top ?
add this : "This is Rejected"
Sub CommandButton6_click()
ChangeSubjectForward Item
End sub
Sub ChangeSubjectForward(Item)
Item.Subject = "Test"
Set myForward = Item.Forward
myForward.Recipients.Add "ccccc.ccccell@somewhere.com"
myForward.Body = "This is Rejected"
Item.Save
myForward.Send
End Sub
Thanks
david powell