View Single Post
  #2  
Old January 11th 08, 04:08 PM posted to microsoft.public.outlook.calendaring
Diane Poremsky [MVP]
external usenet poster
 
Posts: 12,991
Default Rules for auto accepting meeting invitations

yes, create a rule looking for meeting requests and use run a script as the
action.

place this code in ThisOutlookSession and use it for the script.

Sub AutoAcceptMeetings(oRequest As MeetingItem)

If oRequest.MessageClass "IPM.Schedule.Meeting.Request" Then
Exit Sub

Dim oAppt As AppointmentItem
Set oAppt = oRequest.GetAssociatedAppointment(True)

Dim oResponse
Set oResponse = oAppt.Respond(olMeetingAccepted, True)
oResponse.Display

End Sub

--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Need Help with Common Tasks? http://www.outlook-tips.net/beginner/
Outlook 2007: http://www.slipstick.com/outlook/ol2007/

Outlook Tips by email:


Outlook Tips:
http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:



"Steve Vincent" wrote in message
...
In Outlook 2003, can I set up rules to automatically accept meeting
requests
from specific individuals? And another question: can I set up a rule to
automatically remove appointments from a meeting cancellation?

Thanks in advance,

Steve


Ads