am 14.03.2007 16:04 Uhr schrieb [EMAIL PROTECTED] unter
[EMAIL PROTECTED]:
> Dear fellow citizens,
>
> Maybe I am out of tune here..
> but as far as I am concerned, I specifically use Emailer because I do not
> want an email package that has the ability to render (display/interpret)
> HTML.
I, too, had to change from EMailer to Outlook Express due to EMailer not
working any longer with my ISP (neither version). I found the following
Apple Script which does away nicely with any HTML in E-mails. It's in a rule
which runs last after all the junk is cleared out.
tell application "Outlook Express"
set theMessages to the current messages
set theMsg to item 1 of theMessages
if has html of theMsg = true then
set content of theMsg to my adbReplace(¬
content of theMsg, "text/html", "text/plain")
end if
end tell
on adbReplace(theData, what, withWhat)
set oldDelims to AppleScript's text item delimiters
set AppleScript's text item delimiters to what
copy (every text item of theData) to temp
set AppleScript's text item delimiters to withWhat
copy (every item of temp as text) to res
set AppleScript's text item delimiters to oldDelims
return res
end adbReplace
>I would like to find a way back to playing MP3 files (e.g. Winamp) by
>completely abandoning iTunes,
Doesn't SoundJam MP work any longer with Mac OS 9.xx?
Udo
___________________________________________________________________________
To unsubscribe send a mail message with a SUBJECT line of "unsubscribe" to
<[EMAIL PROTECTED]> or <[EMAIL PROTECTED]>