Mac Osx Mail, save multiple emails


Recommended Posts

I need to save 1422 emails from a folder as text or rtf files, I can drag and drop them or use file save as one at a time, but I don't seem to be able to do them all at once.

Any suggestions?

Link to comment
Share on other sites

Have you tried creating a workflow using Automator?

Edit:-

I did just find this on the net; might be useful.

Add a "Run Applescript" action with this as the commands:

tell application "Mail"

repeat with aMessage in input

set theBody to content of aMessage

set theSubject to subject of aMessage

tell application "TextEdit"

make new document with properties {text:theBody}

end tell

end repeat

end tell

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.