Bcc help...please!

D

David Gunar

Hi everyone,

I have a question regarding auto bcc feature. Mac mail program has this
available where every e-mail you send out can be automatically bbc'd to an
e-mail account of your choice. Is there a way to set the Entourage to do
the same or do you have to enter the e-mail address to the bcc field every
single time?
Thanks for your help in advance, Dave
 
D

Diane Ross

Hi everyone,

I have a question regarding auto bcc feature. Mac mail program has this
available where every e-mail you send out can be automatically bbc'd to an
e-mail account of your choice. Is there a way to set the Entourage to do
the same or do you have to enter the e-mail address to the bcc field every
single time?
Thanks for your help in advance, Dave
This option is not available in Entourage. You can do this with a script.

Creates new message with Bcc.

tell application "Microsoft Entourage"
set newMessage to make new outgoing message with properties {BCC
recipients:"YOUR MAIL ADDRESS HERE"}
open newMessage
end tell

Add a shortcut for easy use.


To add a Bcc to a reply use this script.

tell application "Microsoft Entourage"
if (class of front window) is draft window then
set originalMessage to front window
save originalMessage -- Save the draft message
make new recipient at end of originalMessage with properties
{recipient type:bcc recipient, address:{display name:"Your Name",
address:"[email protected]"}}
save front window
else
display dialog "This script requires that a draft window be open,
and adds a BCC recipient to it."
end if
end tell

--
Diane Ross, Microsoft Mac MVP
Entourage Help Page
<http://www.entourage.mvps.org/>
Entourage Help Blog
<http://blog.entourage.mvps.org/>
 
Top