OS X Mail Mark As Replied


/ Published in: AppleScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. using terms from application "Mail"
  2. tell application "Mail"
  3. set selectedMessages to selection
  4. repeat with eachMessage in selectedMessages
  5. set was replied to of eachMessage to true
  6. end repeat
  7. end tell
  8. end using terms from

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.