I am trying to have this script run only if it Forwarded. I work for a federally regulated company and all email created on specific topics needs a copy sent to our Compliance department mailbox. Here is what I have tried:
Function Item_Forward(ByVal Forward)
dim strComplianceTest
strComplianceTest = "Email@Address.com"
Item.messageClass=sSaveMessageClass
Item.CC = strComplianceTest
Item.Save
Item.Send
End Function
1. How do I stop the Macro prompts (Disable/Enable) from happening.
2. It does not send the CC nor show the address in the box.
Do I need Item.Display or something like that? PLEASE HELP!
Function Item_Forward(ByVal Forward)
dim strComplianceTest
strComplianceTest = "Email@Address.com"
Item.messageClass=sSaveMessageClass
Item.CC = strComplianceTest
Item.Save
Item.Send
End Function
1. How do I stop the Macro prompts (Disable/Enable) from happening.
2. It does not send the CC nor show the address in the box.
Do I need Item.Display or something like that? PLEASE HELP!