Using Growl for Entourage Notifications
- Download and install growl.
- Copy/Paste this Script into AppleScript:
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
- Setup a rule in Entourage to Run this script every time a new mail comes in.
- That’s it. Have fun.
Rate This Article:

Loading ...