You would have to do this with a script, which can be run from a mail rule.
Here is a script such as you could use:
set tempDirectory to (path to temporary items from user domain) as Unicode
text
tell application "Microsoft Entourage"
set themessage to item 1 of (get current messages)
set filename to my cleanCharacters(subject of themessage & " - " & time
sent of themessage) as text
save themessage in tempDirectory & filename
set newMsg to make outgoing message at end of folder id 2 ¬
with properties {subject:"forwarded emails", ¬
to recipients:"My Wife <
[email protected]>", ¬
content:"This mesage forwarded automatically" & return & return, ¬
attachment:alias (tempDirectory & filename)}
send newMsg
end tell
on cleanCharacters(theText)
set characterSets to {{"/", "-"}, {"\"", ""}, {"\\", "-"}, {":", ""}}
repeat with aSet in characterSets
set AppleScript's text item delimiters to item 1 of aSet
set theText to text items of theText
set AppleScript's text item delimiters to item 2 of aSet
set theText to theText as Unicode text
end repeat
return theText
end cleanCharacters
Save the script as a compiled script & put it in the ŒEntourage Script Menu
Items¹ folder in your ŒMicrosoft User Data¹ folder. The script can be
manually run from the menu or called as an action in a mail rule.
--
BarryW
Microsoft MVP (see
http://www.microsoft.com/mvp for details)
Visit the Entourage User's Weblog for hints tips & troubleshooting for
Microsoft entourage:
http://www.barryw.net/weblog
From: Richard Davies <
[email protected]>
Organization: AT&T Worldnet
Newsgroups: microsoft.public.mac.office.entourage
Date: Mon, 05 Nov 2007 22:30:33 GMT
Subject: Re: Forwarding .html
I have a rule that forwards selected messages to my wife. The choices for
forwarding in the rules menu don't include Forward as Attachment. Is there
any way of making that option available?
Thanks