Skip to content

Instantly share code, notes, and snippets.

@oparrish
Created August 9, 2011 18:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oparrish/1134751 to your computer and use it in GitHub Desktop.
Save oparrish/1134751 to your computer and use it in GitHub Desktop.
Move Message(s) to All Mail
tell application "Mail"
set theSelectedMessages to selection
set theMailbox to "[Gmail]/All Mail"
repeat with theMessage in theSelectedMessages
set messageAccount to account of mailbox of theMessage
tell application "Mail"
move the theMessage to mailbox theMailbox of messageAccount
end tell
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment