I am trying to put together a poor man's distribution list using the Group feature in Entourage. Here's what I want to happen:
1. Anyone can send a message to a specific email address (which is an account that I already have).
2. I would to setup a Rule in Entourage that will redirect that message to a Group that I already have in Entourage.
It seems that the existing Rules in Entourage don't accommodate a redirect using a Group, so an Applescript appears in order here. Here is what I've got so far:
tell application "Microsoft Entourage"
redirect message to group "PMOC" --PMOC is the name of the Group
send
end tell
...well, this doesn't work. I get an error saying Entourage doesn't understand the message.
So, now I am trying this direction:
tell application "Microsoft Entourage"
(redirect message to group "PMOC") make new outgoing message
send
end tell
...but still running into problems. "Entourage doesn't understand the redirect message."
Any suggestions out there?
Thanks in advance...