Title: Re: Viewing issue...
On 8/1/06 7:45 AM, "Rich Hansen" <[EMAIL PROTECTED]> wrote:

> revDAVE wrote on 7/31/06 6:33 PM
>
>> Interesting - so - is there any way to control INCOMING mail to read as
>> plain text?
>
> Well you could go so far as to write a rule that says
> IF message is HTML then mark as read and move to trash
>
> Might miss a few things though probably not much


You could have a Rule for messages "Is HTML Mail" that Runs AppleScript, having saved the following script in Script Editor to your Entourage Script Menu Items folder in Microsoft User Data folder:

tell application "Microsoft Entourage"
    set theMsg to item 1 of (get current messages)
    if has HTML of theMsg then set content of theMsg to (get content of theMsg)
end tell


(Note: I sent this reply in HTML in order to get the long line not to wrap, since a wrapped line as found in plain text email would error in compilation when copied to Script Editor if not manually unwrapped there. So you'd lose the ability to copy and paste scripts as well as the stuff you don't want if you do use this script automatically in Entourage...)

--
Paul Berkowitz

Reply via email to