Posted By


iloveitaly on 12/03/09

Tagged


Statistics


Viewed 1609 times
Favorited by 0 user(s)

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


You need to login to view comments.