Created
April 28, 2011 14:28
-
-
Save fixlr/946451 to your computer and use it in GitHub Desktop.
AppleScript that I use to make Mail.app suck less.
This file contains 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 "Mail" | |
set theSelectedMessages to selection | |
repeat with theMessage in theSelectedMessages | |
set theMailbox to "All Mail" | |
tell application "Mail" | |
move the theMessage to mailbox theMailbox | |
end tell | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I keep it in
~/Library/Mail/Mail\ Scripts/
and use Alfred to trigger it when a specific combination of keys are pressed.