Change The Subject and Forward an Email – Outlook
This simple script could be used with Outlook rules to change the subject of an email and forward it – Alt+F11 to open the editor, modify the script with your email address and your own subject, save it and then create a rule –> on the second step of the rules wizard (What do you want to do with the message) choose run a script, select your newly created script and finish the wizard Sub ChangeSubjectForward(Item As Outlook.MailItem) Item.Subject = “What you want to be” Item.Save Set myForward = Item.Forward myForward.Recipients.Add “you@yourmail.com” myForward.Send End Sub