Need info on scripts and Autoforward through Exchange Server in Outlook 2010
Posted
by
user103037
on Super User
See other posts from Super User
or by user103037
Published on 2011-10-26T20:58:07Z
Indexed on
2012/09/04
15:43 UTC
Read the original article
Hit count: 259
I am using the below information to auto-forward my work emails to my BB via a gmail account. The script works fine. But my work email ask's for every email to send either classifield or unclassified.
What and where would I add into the below script to autoforward unclassified?
I have written some VBA script to do this bypass the server's disabling of auto-forward. Basically it mimics the user forwarding the email rather than the server doing an auto-forward.
It's pretty simple:
Sub AutoForwardAllSentItems(Item As Outlook.MailItem)
Dim strMsg As String
Dim myFwd As Outlook.MailItem
Set myFwd = Item.Forward
myFwd.Recipients.Add "[email protected]"
myFwd.Send
Set myFwd = Nothing
End Sub
It's beyond the scope of this post to give detailed instructions, but here's a summary:
Add the above code in the Visual Basic editor of Outlook (Alt-F11 should get your started). Be sure to change [email protected] to the address where you want the mail to go
Tell Outlook to run this code for each inbound message (Tools -> Rules and Alerts -> New Rule -> Check Messages when they arrive -> Next -> YES -> Checkbox "Run a Script" -> Then select the script you just created. Now Outlook should automatically forward each email you receive, but it won't be blocked by the Admin as an "Auto-forward".
© Super User or respective owner