Using Growl for Entourage Notifications

  1. Download and install growl.
  2. 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
  1. Setup a rule in Entourage to Run this script every time a new mail comes in.
  2. That’s it.  Have fun.
Rate This Article:
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...

Leave a Comment

You must be logged in to post a comment.