Diane said:
Entourage doesn't support Growl. I've suggested this addition myself. The
more people that ask for this, the better chance we will get it added. Send
Feedback under Help in the Menu bar.
Not natively it doesn't and there are various implementations about. I
started with one from scriptbuilders.net (from
[email protected]), but I
didn't like some of its behaviour, so I tweaked it a bit.
Place this script in your Entourage Scripts folder and add a new rule on
all incoming mail that runs this script (as the last rule in the list).
Jon
tell application "GrowlHelperApp"
set the allNotificationsList to {"New Mail"}
set the enabledNotificationsList to {"New Mail"}
register as application ¬
"Entourage" all notifications allNotificationsList ¬
default notifications enabledNotificationsList ¬
icon of application "Microsoft Entourage"
end tell
tell application "Microsoft Entourage"
set theMessages to the current messages
end tell
repeat with theMsg in theMessages
tell application "Microsoft Entourage"
set mysubject to get the subject of theMsg
set mysender to the display name of sender of theMsg as string
if mysender is "" then
set mysender to the address of sender of theMsg as string
end if
end tell
tell application "GrowlHelperApp"
notify with name "New Mail" title "You have new email" description
("From " & mysender & " about " & mysubject) application name "Entourage"
end tell
end repeat