wstawianie spotkania perspektywy przy użyciu c #, asp.net

Chcę wstawić termin w kalendarzu użytkownika, mogę łatwo wstawić do własnego, używając Microsoft.Office.Interop.Outlook.Application (poniżej), a następnie dodać użytkownika jako odbiorcę, ale co jeśli nie chcę dodawać siebie, jeśli chcę tylko dodać innych? Czy można to zrobić w podobny sposób?

dzięki

            Microsoft.Office.Interop.Outlook.Application app = null; 
            Microsoft.Office.Interop.Outlook.AppointmentItem appt = null; 
            app = new Microsoft.Office.Interop.Outlook.Application(); 

            appt = (Microsoft.Office.Interop.Outlook.AppointmentItem)app.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olAppointmentItem); 
            appt.Subject = "Meeting "; 
            appt.Body = "Test"; 
            appt.Location = "a room"; 
            appt.Start = Convert.ToDateTime("08/08/2012 05:00:00 PM"); 
            appt.Recipients.Add("[email protected]"); 
            appt.End = Convert.ToDateTime("08/08/2012 6:00:00 PM"); 
            appt.ReminderSet = true; 
            appt.ReminderMinutesBeforeStart = 15; 
            appt.Importance = Microsoft.Office.Interop.Outlook.OlImportance.olImportanceHigh; 
            appt.BusyStatus = Microsoft.Office.Interop.Outlook.OlBusyStatus.olBusy; 
            appt.Save();

questionAnswers(1)

yourAnswerToTheQuestion