Created
February 14, 2013 23:44
-
-
Save MattJermyWright/4957430 to your computer and use it in GitHub Desktop.
Applescript that moves any set of Microsoft Outlook 2011 messages to the first iMap account and to a pre-defined folder within that imap account.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Microsoft Outlook" | |
set thisAccount to item 1 of imap accounts | |
set destFolder to folder "Hewlett-Packard" | |
set messageSet to current messages | |
repeat with currMsg in messageSet | |
move currMsg to destFolder | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment