- Open Automator.
- Create a new service.
- Configure the service so that it receives "no input" in "Mail"
- Add "Get Selected Mail Messages" into the workflow
- Add "Run Applescript" into the workflow.
- Paste the attached AppleScript and save the workflow as "Bounce Message".
- Create a keyboard shortcut for "Bounce Message" in Mail.app(⌘⇧B)
- In Mail, select the message you would like to bounce. Hit your keyboard shortcut(⌘⇧B) or from the "Mail" menu, choose "Services", then click on "Bounce Message".
Created
April 4, 2012 06:06
-
-
Save paulnicholson/2298347 to your computer and use it in GitHub Desktop.
Bounce Message
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
on run {input, parameters} | |
tell application "Mail" | |
repeat with eachMessage in input | |
bounce eachMessage | |
delete eachMessage | |
end repeat | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just found this Bounce Message solution at http://oregontechsupport.com/articles/osx-mail-bounce.php and here and it works great on my iMac running Mac OS Sierra... Thanks
Chet