Skip to content

Instantly share code, notes, and snippets.

@paulnicholson
Created April 4, 2012 06:06
Show Gist options
  • Save paulnicholson/2298347 to your computer and use it in GitHub Desktop.
Save paulnicholson/2298347 to your computer and use it in GitHub Desktop.
Bounce Message
  1. Open Automator.
  2. Create a new service.
  3. Configure the service so that it receives "no input" in "Mail"
  4. Add "Get Selected Mail Messages" into the workflow
  5. Add "Run Applescript" into the workflow.
  6. Paste the attached AppleScript and save the workflow as "Bounce Message".
  7. Create a keyboard shortcut for "Bounce Message" in Mail.app(⌘⇧B)
  8. 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".
on run {input, parameters}
tell application "Mail"
repeat with eachMessage in input
bounce eachMessage
delete eachMessage
end repeat
end tell
end run
@chetvolpe
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment