Shawn Zeng
Member
- Outlook version
- Outlook 2010 64 bit
- Email Account
- Exchange Server
Hi
So I used the following script to update mail subject and forward. This works, but I am wondering if there is a function or syntax to redirect and not foward. Basically tring to see if mail can be sent without the FW infront the subject and without my email as the sender.... Thanks!
Sub ChangeSubjectForward(Item As Outlook.MailItem)
Item.Subject = "Test for " & Date
Item.Save
Set myForward = Item.Forward
myForward.Recipients.Add "abs@gmail.com"
myForward.Send
End Sub
So I used the following script to update mail subject and forward. This works, but I am wondering if there is a function or syntax to redirect and not foward. Basically tring to see if mail can be sent without the FW infront the subject and without my email as the sender.... Thanks!
Sub ChangeSubjectForward(Item As Outlook.MailItem)
Item.Subject = "Test for " & Date
Item.Save
Set myForward = Item.Forward
myForward.Recipients.Add "abs@gmail.com"
myForward.Send
End Sub