PhilMurwin / growl-for-windows

Automatically exported from code.google.com/p/growl-for-windows
0 stars 0 forks source link

Support for Outlook 2010 #40

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Are there plans to support Outlook 2010?  It worked fine when I was on 2007, 
but now that I have upgraded, I get no alerts.

Original issue reported on code.google.com by zeddz...@gmail.com on 16 Dec 2011 at 3:27

GoogleCodeExporter commented 9 years ago
Outlook 2010 has extensive scripting support, it is easy to write a VBA script 
that calls the command line growlnotify.exe.

For any incoming emails;
Sub GrowlNotifyRule(Item As Outlook.MailItem)
Shell "C:\Program Files (x86)\Growl for Windows\growlnotify.exe /t:""" & 
Item.SenderName & """ /id:1 /i:"".\Email.png"" /a:""Email Notifier"" 
/ai:"".\Email.png"" /r:""Email Notification"",""Meeting Notification"" 
/n:""Email Notification"" /silent:true """ & Item.Subject & "\n" & 
Left$(Item.Body, 30) & "...""", vbHide
End Sub

For incoming meetings:
Sub GrowlNotifyRuleMeeting(Item As Outlook.MeetingItem)
Shell "C:\Program Files (x86)\Growl for Windows\growlnotify.exe /t:""" & 
Item.SenderName & """ /id:2 /i:"".\Meeting.png"" /a:""Email Notifier"" 
/ai:"".\Email.png"" /r:""Email Notification"",""Meeting Notification"" 
/n:""Meeting Notification"" /silent:true """ & Item.Subject & "\n" & 
Left$(Item.Body, 30) & "...""", vbHide
End Sub

Original comment by ensam...@gmail.com on 4 Apr 2012 at 1:31

GoogleCodeExporter commented 9 years ago
I use the Outlook Add-in from:

http://www.growlforwindows.com/gfw/plugins/outlook

with Outlook 2010 on Windows7 and it works fine.

R

Original comment by raad.ca...@googlemail.com on 5 Apr 2012 at 9:26