mfulbright
IS-IT--Management
- Apr 13, 2009
- 3
we have a strict email policy and all emails must go through a manager before being sent out. i am in process of setting up a Windows XP laptop with Office XP to move the original "To" email address to the subject line and change the "To" address to the user's manager, e.g.
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.Subject = Item.Subject + Item.To
Item.To = "manager@company.com"
End Sub
Upon Send the message is updated and saved to Sent Items like it was sent but the message is never actually sent. any ideas?
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.Subject = Item.Subject + Item.To
Item.To = "manager@company.com"
End Sub
Upon Send the message is updated and saved to Sent Items like it was sent but the message is never actually sent. any ideas?