C#中调用Outlook API 发起会议

原文:C#中调用Outlook API 发起会议

  在我上一篇博文中曾提到了 SharePoint 中调用传出电子邮件中的邮件服务器及地址发送邮件

  但是,里面的方法只能用于发送普通电子邮件。如果要发起会议之类的特殊邮件的话,可以使用Outlook 自身的API。

  创建项目后,为它添加.NET引用:“Microsoft.Office.Interop.Outlook"的引用,即可调用,需要注意的是,在添加的时候,注意一下OFFICE版本号。

  在调用其API发起会议的过程中,遇到了一个问题:

  创建完一个约会条目后,找了很久没找到如何为这一约会指定“发件人”,后来一想,Window CF 中,查找人员信息有个OutlookSession的东东,

  那这Outlook会不会有同样的方式呢,经过测试,还真的找到方法,原来,它的API指定的发件人是和你机上运行的Outlook的帐户设置直接相关的。
  通过 ApplicationClass.Session.Accounts即可找到您设置的帐户集合,需要特别特别注意的是,在这里,取某个人员时,集合的索引是从1开始,而不是
  从0开始。 找到相关的帐户后,可以通过 AppointmentItem.SendUsingAccount 属性来指定约会的发件人。
 ---但是,如果我不使用Outlook里帐户设置的帐户集合,而要指定其它的邮件帐户来发送邮件时该怎么弄?到现在也没有找到或发现办法,希望知道的达人们能
  指点一下门路,拜谢先~~~~

   下面是测试的代码,在WIN2003+OFFICE12下运行通过,成功创建会议:

  

 1C#中调用Outlook API 发起会议using System;
 2C#中调用Outlook API 发起会议using System.Collections.Generic;
 3C#中调用Outlook API 发起会议using System.Text;
 4C#中调用Outlook API 发起会议using Microsoft.Office.Interop.Outlook;
 5C#中调用Outlook API 发起会议////////////////////
 6C#中调用Outlook API 发起会议/* 调用Outlook api 发起会议
 7C#中调用Outlook API 发起会议/* mcjeremy@cnblogs.com
 8C#中调用Outlook API 发起会议////////////////////
 9C#中调用Outlook API 发起会议namespace OutlookAPI
10C#中调用Outlook API 发起会议{
11C#中调用Outlook API 发起会议    class Program
12C#中调用Outlook API 发起会议    {
13C#中调用Outlook API 发起会议        static void Main(string[] args)
14C#中调用Outlook API 发起会议        {
15C#中调用Outlook API 发起会议            try
16C#中调用Outlook API 发起会议            {
17C#中调用Outlook API 发起会议                ApplicationClass oApp = new Microsoft.Office.Interop.Outlook.ApplicationClass();
18C#中调用Outlook API 发起会议
19C#中调用Outlook API 发起会议                //会议是约会的一种
20C#中调用Outlook API 发起会议                AppointmentItem oItem = (AppointmentItem)oApp.CreateItem(OlItemType.olAppointmentItem);
21C#中调用Outlook API 发起会议                oItem.MeetingStatus = OlMeetingStatus.olMeeting;
22C#中调用Outlook API 发起会议
23C#中调用Outlook API 发起会议                oItem.Subject = "主题";
24C#中调用Outlook API 发起会议
25C#中调用Outlook API 发起会议                oItem.Body = "内容";
26C#中调用Outlook API 发起会议
27C#中调用Outlook API 发起会议                oItem.Location = "地点";
28C#中调用Outlook API 发起会议
29C#中调用Outlook API 发起会议                //开始时间 
30C#中调用Outlook API 发起会议                oItem.Start = DateTime.Now.AddDays(1);
31C#中调用Outlook API 发起会议
32C#中调用Outlook API 发起会议                //结束时间
33C#中调用Outlook API 发起会议                oItem.End = DateTime.Now.AddDays(2);
34C#中调用Outlook API 发起会议
35C#中调用Outlook API 发起会议                //提醒设置
36C#中调用Outlook API 发起会议                oItem.ReminderSet = true;
37C#中调用Outlook API 发起会议                oItem.ReminderMinutesBeforeStart = 5;
38C#中调用Outlook API 发起会议
39C#中调用Outlook API 发起会议                //是否全天事件
40C#中调用Outlook API 发起会议                oItem.AllDayEvent = false;
41C#中调用Outlook API 发起会议
42C#中调用Outlook API 发起会议                oItem.BusyStatus = OlBusyStatus.olBusy;                
43C#中调用Outlook API 发起会议
44C#中调用Outlook API 发起会议                //索引从1开始,而不是从0
45C#中调用Outlook API 发起会议                //发件人的帐号信息
46C#中调用Outlook API 发起会议                oItem.SendUsingAccount = oApp.Session.Accounts[2];               
47C#中调用Outlook API 发起会议
48C#中调用Outlook API 发起会议                //添加必选人
49C#中调用Outlook API 发起会议                Recipient force = oItem.Recipients.Add("mailuser2@mailserver.com");
50C#中调用Outlook API 发起会议                force.Type = (int)OlMeetingRecipientType.olRequired;
51C#中调用Outlook API 发起会议                //添加可选人
52C#中调用Outlook API 发起会议                Recipient opt = oItem.Recipients.Add("mailuser3@p.mailserver.com");
53C#中调用Outlook API 发起会议                opt.Type = (int)OlMeetingRecipientType.olOptional;
54C#中调用Outlook API 发起会议                //添加会议发起者
55C#中调用Outlook API 发起会议                Recipient sender = oItem.Recipients.Add("mailuser1@mailserver.com");
56C#中调用Outlook API 发起会议                sender.Type = (int)OlMeetingRecipientType.olOrganizer;                    
57C#中调用Outlook API 发起会议               
58C#中调用Outlook API 发起会议                oItem.Recipients.ResolveAll();
59C#中调用Outlook API 发起会议
60C#中调用Outlook API 发起会议                //oItem.SaveAs("d:/TEST.MSG", OlSaveAsType.olMSG);
61C#中调用Outlook API 发起会议
62C#中调用Outlook API 发起会议                oItem.Send();
63C#中调用Outlook API 发起会议
64C#中调用Outlook API 发起会议                //MailItem mItem = (MailItem)oApp.CreateItem(OlItemType.olMailItem);
65C#中调用Outlook API 发起会议                //Recipient rTo = mItem.Recipients.Add("****");
66C#中调用Outlook API 发起会议                //rTo.Type = (int)OlMailRecipientType.olTo;
67C#中调用Outlook API 发起会议                //Recipient rCC=mItem.Recipients.Add("****");
68C#中调用Outlook API 发起会议                //rCC.Type = (int)OlMailRecipientType.olCC;
69C#中调用Outlook API 发起会议                //Recipient rBC = mItem.Recipients.Add("****");
70C#中调用Outlook API 发起会议                //rBC.Type = (int)OlMailRecipientType.olBCC;
71C#中调用Outlook API 发起会议
72C#中调用Outlook API 发起会议                Console.WriteLine("OK");
73C#中调用Outlook API 发起会议            }
74C#中调用Outlook API 发起会议            catch (System.Exception ex)
75C#中调用Outlook API 发起会议            {
76C#中调用Outlook API 发起会议                Console.WriteLine(ex.Message);
77C#中调用Outlook API 发起会议            }
78C#中调用Outlook API 发起会议
79C#中调用Outlook API 发起会议            Console.ReadLine();
80C#中调用Outlook API 发起会议        }
81C#中调用Outlook API 发起会议    }
82C#中调用Outlook API 发起会议}

83C#中调用Outlook API 发起会议

 

C#中调用Outlook API 发起会议

上一篇:CTF—MISC—USB键盘流量分析


下一篇:docker-compose常用命令-详解