am 08.11.2006 23:18 Uhr schrieb [EMAIL PROTECTED] unter
[EMAIL PROTECTED]:
> So, let it be known... Marc Casteels in Belgium is number 19.
> And I love Claris Emailer because it had the complete IMPOSSIBILITY to
> handle HTML.
I must be around #30...
For all those unfortunate souls who can't use [EMAIL PROTECTED] any longer and
have to
use Outlook Express -- here is an apple script for the scripts folder which
will do HTML justice -- it strips it out completely from an e-mail...
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
Had to resort to this script as I can't use [EMAIL PROTECTED] any longer due to
pecularities of my ISP. Even the patched versions won't do any longer.
Udo
___________________________________________________________________________
To unsubscribe send a mail message with a SUBJECT line of "unsubscribe" to
<[EMAIL PROTECTED]> or <[EMAIL PROTECTED]>