How do I create and send appointments to Microsoft Outlook calender?

半城伤御伤魂 提交于 2019-12-18 16:41:39

问题


I am trying to create an appointment in the Microsoft Outlook (2003) calender of another person using the below code.While running this program, The Appointment is getting saved in my calender.But not being sent to the recipient.

try
{
    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 Appointment body";
    appt.Location = "TBD";
    appt.Start = Convert.ToDateTime("12/23/2009 05:00:00 PM");
    appt.Recipients.Add("smuthumari@mycompany.com");
    appt.End = Convert.ToDateTime("12/23/2009 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();
    appt.Send();
}
catch (COMException ex)
{
    Response.Write(ex.ToString());
}

Am i missing anything? Can any one help me out to solve this issue?


回答1:


After you have the appointment:

Outlook.MailItem mailItem = appt.ForwardAsVcal();
mailItem.To = "recipient's email address";
mailItem.Send();



回答2:


Try adding:

appt.MeetingStatus = Microsoft.Office.Interop.Outlook.OlMeetingStatus.olMeeting;

Default status is an appointment which I'm not sure is being sent.




回答3:


Here is how I fixed this issue :

I put (like Sonny Boy's post) :

Outlook.MailItem mailItem = appt.ForwardAsVcal();
mailItem.To = "firstname.lastname@email.com";
mailItem.Send();

But I also had to create a web.config file, and to set up the authorization access to avoid any COMException :

<system.web>
  <authorization>
    <deny users="?"/>
  </authorization>
</system.web>


来源:https://stackoverflow.com/questions/1952289/how-do-i-create-and-send-appointments-to-microsoft-outlook-calender

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!