Barry
Mon Nov 05 16:03:00 PST 2007
> This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
--B_3277152181_1984370
Content-type: text/plain;
charset="ISO-8859-1"
Content-transfer-encoding: 8bit
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 <myWife@myCompany.com>", ¬
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 <RED_dummy@att.net>
> 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
in article C342889B.15968%dajenik@gmail.com, Doug Jenik at dajenik@gmail.com
wrote on 10/22/07 4:04 PM:
> Makes sense. Thanks a bunch.
>
>
> in article C3428615.3221%mbintener@NOmvpsSPAM.org, Michel Bintener at
> mbintener@NOmvpsSPAM.org wrote on 10/22/07 8:53 AM:10/22/07 8:53 AM
>
>> There is. When you hit Forward, you're telling Entourage to recompose the
>> message in its own HTML creation engine. However, that engine is far from
>> efficient, which is why the result is very poor. To bypass this mechanism,
>> select a message, then click on Message>Forward as Attachment; that way,
>> Entourage will attach the message and leave the source code intact.
>>
>>
>> On 22/10/2007 15:28, in article C342018E.155DD%dajenik@gmail.com, "Doug
>> Jenik" <dajenik@gmail.com> wrote:
>>
>>> When I forward html email, for some reason it isn¹t displayed properly when
>>> sending or when received. The recipient gets an email with a bunch of
>>> source
>>> code and a bunch of links. Is there a way to correct this in Entourage so
>>> that emails are received as desired? Thanks.
>>
>
--B_3277152181_1984370
Content-type: text/html;
charset="ISO-8859-1"
Content-transfer-encoding: quoted-printable
<HTML>
<HEAD>
<TITLE>Re: Forwarding .html</TITLE>
</HEAD>
<BODY>
<FONT SIZE=3D"5"><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D=
'font-size:11pt'>You would have to do this with a script, which can be run f=
rom a mail rule.<BR>
Here is a script such as you could use:<BR>
<BR>
set tempDirectory to (path to temporary items from user domain) as Unicode =
text<BR>
tell application "Microsoft Entourage"<BR>
set themessage to item 1 of (get current messages)<=
BR>
set filename to my cleanCharacters(subject of theme=
ssage & " - " & time sent of themessage) as text<BR>
save themessage in tempDirectory & filename<BR>
set newMsg to make outgoing message at end of folde=
r id 2 ¬<BR>
with properties {subject:&q=
uot;forwarded emails", ¬<BR>
to recipients:"My Wife=
<myWife@myCompany.com>", ¬<BR>
content:"This mesage f=
orwarded automatically" & return & return, ¬<BR>
attachment:alias (tempDirec=
tory & filename)}<BR>
send newMsg<BR>
end tell<BR>
<BR>
on cleanCharacters(theText)<BR>
set characterSets to {{"/", "-"=
}, {"\"", ""}, {"\\", "-"}, {&q=
uot;:", ""}}<BR>
repeat with aSet in characterSets<BR>
set AppleScript's text item=
delimiters to item 1 of aSet<BR>
set theText to text items o=
f theText<BR>
set AppleScript's text item=
delimiters to item 2 of aSet<BR>
set theText to theText as U=
nicode text<BR>
end repeat<BR>
return theText<BR>
end cleanCharacters<BR>
<BR>
Save the script as a compiled script & put it in the ‘Entourage S=
cript Menu Items’ folder in your ‘Microsoft User Data’ fol=
der. The script can be manually run from the menu or called as an action in =
a mail rule.<BR>
<BR>
<BR>
<BR>
<BR>
-- <BR>
BarryW<BR>
Microsoft MVP (see <a href=3D"
http://www.microsoft.com/mvp">http://www.micros=
oft.com/mvp</a> for details)<BR>
Visit the Entourage User's Weblog for hints tips & troubleshooting for =
Microsoft entourage: <a href=3D"
http://www.barryw.net/weblog">http://www.barry=
w.net/weblog</a><BR>
<BR>
<BR>
<FONT COLOR=3D"#0000FF">> From: Richard Davies <RED_dummy@att.net><B=
R>
> Organization: AT&T Worldnet<BR>
> Newsgroups: microsoft.public.mac.office.entourage<BR>
> Date: Mon, 05 Nov 2007 22:30:33 GMT<BR>
> Subject: Re: Forwarding .html<BR>
> <BR>
</FONT>I have a rule that forwards selected messages to my wife. The choice=
s for<BR>
forwarding in the rules menu don't include Forward as Attachment. Is there<=
BR>
any way of making that option available?<BR>
<BR>
Thanks<BR>
<BR>
<BR>
in article C342889B.15968%dajenik@gmail.com, Doug Jenik at dajenik@gmail.co=
m<BR>
wrote on 10/22/07 4:04 PM:<BR>
<BR>
<FONT COLOR=3D"#0000FF">> Makes sense. Thanks a bunch.<BR>
> <BR>
> <BR>
> in article C3428615.3221%mbintener@NOmvpsSPAM.org, Michel Bintener at<=
BR>
> mbintener@NOmvpsSPAM.org wrote on 10/22/07 8:53 AM:10/22/07 8:53 AM<BR=
>
> <BR>
</FONT><FONT COLOR=3D"#008000">>> There is. When you hit Forward, you'r=
e telling Entourage to recompose the<BR>
>> message in its own HTML creation engine. However, that engine is f=
ar from<BR>
>> efficient, which is why the result is very poor. To bypass this me=
chanism,<BR>
>> select a message, then click on Message>Forward as Attachment; =
that way,<BR>
>> Entourage will attach the message and leave the source code intact=
.<BR>
>> <BR>
>> <BR>
>> On 22/10/2007 15:28, in article C342018E.155DD%dajenik@gmail.com, =
"Doug<BR>
>> Jenik" <dajenik@gmail.com> wrote:<BR>
>> <BR>
</FONT><FONT COLOR=3D"#FF0000">>>> When I forward html email, for so=
me reason it isn’t displayed properly when<BR>
>>> sending or when received. The recipient gets an email wi=
th a bunch of<BR>
>>> source<BR>
>>> code and a bunch of links. Is there a way to correct thi=
s in Entourage so<BR>
>>> that emails are received as desired? Thanks.<BR>
</FONT><FONT COLOR=3D"#008000">>> <BR>
</FONT><FONT COLOR=3D"#0000FF">> <BR>
</FONT><BR>
</SPAN></FONT></FONT>
</BODY>
</HTML>
--B_3277152181_1984370--