Re: Text Grab from an Outlook Express email
Re: Text Grab from an Outlook Express email
- Subject: Re: Text Grab from an Outlook Express email
- From: Paul Berkowitz <email@hidden>
- Date: Fri, 16 Mar 2001 00:26:02 -0800
On 3/16/01 12:09 AM, "Chris Banford" <email@hidden> wrote:
>
Hi scripters,
>
>
I need to write a small script that will pull the body text out of all the
>
emails stored in an outlook express 5.0 folder, and was wondering if anyone
>
could give a pointer or two.
>
What do you mean "pull out of"? Put where - one single text file run on,
separate files, Script Editor result window one by one, or what?
tell application "Outlook Express"
set theMsgs to every message of folder "Something or Other"
-- if it's a subfolder: 'folder "Other" of folder "Something" -- etc.
repeat with theMsg in theMsgs
set theContent to content of theMsg
-- pull or put it somewhere else
end repeat
end tell
--
Paul Berkowitz