您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)C#中怎么調(diào)用Outlook API,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)建項(xiàng)目后,為它添加.NET引用:“Microsoft.Office.Interop.Outlook"的引用,即可調(diào)用,需要注意的是,在添加的時(shí)候,注意一下OFFICE版本號(hào)。
在C#調(diào)用Outlook API發(fā)起會(huì)議的過(guò)程中,遇到了一個(gè)問題:
創(chuàng)建完一個(gè)約會(huì)條目后,找了很久沒找到如何為這一約會(huì)指定“發(fā)件人”,后來(lái)一想,Window CF 中,查找人員信息有個(gè)OutlookSession的東東,
那這Outlook會(huì)不會(huì)有同樣的方式呢,經(jīng)過(guò)測(cè)試,還真的找到方法,原來(lái),它的API指定的發(fā)件人是和你機(jī)上運(yùn)行的Outlook的帳戶設(shè)置直接相關(guān)的。
通過(guò) ApplicationClass.Session.Accounts即可找到您設(shè)置的帳戶集合,需要特別特別注意的是,在這里,取某個(gè)人員時(shí),集合的索引是從1開始,而不是
從0開始。 找到相關(guān)的帳戶后,可以通過(guò) AppointmentItem.SendUsingAccount 屬性來(lái)指定約會(huì)的發(fā)件人。但是,如果我不使用Outlook里帳戶設(shè)置的帳戶集合,而要指定其它的郵件帳戶來(lái)發(fā)送郵件時(shí)該怎么弄?到現(xiàn)在也沒有找到或發(fā)現(xiàn)辦法,希望知道的達(dá)人們能
指點(diǎn)一下門路,拜謝先~~~~
下面是測(cè)試的代碼,在WIN2003+OFFICE12下運(yùn)行通過(guò),成功創(chuàng)建會(huì)議:
using System; using System.Collections.Generic; using System.Text; using Microsoft.Office.Interop.Outlook; //////////////////// /* 調(diào)用Outlook api 發(fā)起會(huì)議 /* mcjeremy@cnblogs.com //////////////////// namespace OutlookAPI { class Program { static void Main(string[] args) { try { ApplicationClass oApp = new Microsoft.Office.Interop.Outlook.ApplicationClass(); //會(huì)議是約會(huì)的一種 AppointmentItem oItem = (AppointmentItem)oApp.CreateItem(OlItemType.olAppointmentItem); oItem.MeetingStatus = OlMeetingStatus.olMeeting; oItem.Subject = "主題"; oItem.Body = "內(nèi)容"; oItem.Location = "地點(diǎn)"; //開始時(shí)間 oItem.Start = DateTime.Now.AddDays(1); //結(jié)束時(shí)間 oItem.End = DateTime.Now.AddDays(2); //提醒設(shè)置 oItem.ReminderSet = true; oItem.ReminderMinutesBeforeStart = 5; //是否全天事件 oItem.AllDayEvent = false; oItem.BusyStatus = OlBusyStatus.olBusy; //索引從1開始,而不是從0 //發(fā)件人的帳號(hào)信息 oItem.SendUsingAccount = oApp.Session.Accounts[2]; //添加必選人 Recipient force = oItem.Recipients.Add("mailuser2@mailserver.com"); force.Type = (int)OlMeetingRecipientType.olRequired; //添加可選人 Recipient opt = oItem.Recipients.Add("mailuser3@p.mailserver.com"); opt.Type = (int)OlMeetingRecipientType.olOptional; //添加會(huì)議發(fā)起者 Recipient sender = oItem.Recipients.Add("mailuser1@mailserver.com"); sender.Type = (int)OlMeetingRecipientType.olOrganizer; oItem.Recipients.ResolveAll(); //oItem.SaveAs("d:/TEST.MSG", OlSaveAsType.olMSG); oItem.Send(); //MailItem mItem = (MailItem)oApp.CreateItem(OlItemType.olMailItem); //Recipient rTo = mItem.Recipients.Add("****"); //rTo.Type = (int)OlMailRecipientType.olTo; //Recipient rCC=mItem.Recipients.Add("****"); //rCC.Type = (int)OlMailRecipientType.olCC; //Recipient rBC = mItem.Recipients.Add("****"); //rBC.Type = (int)OlMailRecipientType.olBCC; Console.WriteLine("OK"); } catch (System.Exception ex) { Console.WriteLine(ex.Message); } Console.ReadLine(); } } }
上述就是小編為大家分享的C#中怎么調(diào)用Outlook API了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。