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