Reputation: 125
I wanted to reply all to an output appointment instead of respond through c# code.
I am able to iterate through all the appointments of today but in .net 3.5 I could not find an option to Reply All to the appointment. The only option available is Respond or Send appointment as attachment.
I basically wants to open (Display) the reply all window of the appointment with some custom body.
Please guide how to do this.
Upvotes: 0
Views: 205
Reputation: 66276
This has nothing to do with .Net. Outlook Object Model exposes the ReplyAll method only on the MeetingItem, MailItem, SharingItem, and MobileItem objects. That method is not exposed by the AppointmentItem object.
Upvotes: 1