我正在尝试通过C#代码插件自定义Outlook。它正在工作但是当打开两个或多个撰写邮件(通过新邮件)时,会出现一些问题。所以我想避免在Outlook中同时打开两个或多个撰写邮件。我的Outlook版本是2013年。
在下面的代码中,我尝试在发送点击事件时发送附件的链接。如果这个人同时打开两个或多个撰写邮件,这将会崩溃(我在我的项目中写了很多代码来获取附加代码和其他代码的链接)。如何避免两个撰写邮件或为两个撰写邮件对话维护不同的会话?
void Application_ItemSend(object Item, ref bool Cancel)
{
int attachcountbs=0;
StringBuilder sendinglink = new StringBuilder();
string[] comingstrbuilder = Convert.ToString(SPForm.urlofattach).Split('\n');
Outlook.Application oApp = new Outlook.Application();
Outlook.MailItem oMsg = (Outlook.MailItem)oApp.CreateItem(Outlook.OlItemType.olMailItem);
StringBuilder sb = new StringBuilder();
//sb.AppendLine("-------------Internal Use-------------<br/>");
//sb.AppendLine("<a href='" + Class1.test + "'>" + Class1.test + "</a>");
if (Item is Outlook.MailItem)
{
Outlook.MailItem mail = (Outlook.MailItem)Item;
Outlook.NameSpace session = mail.Session;
attachcountbs = mail.Attachments.Count;
int arraycount = comingstrbuilder.Count();
int checkattach=1;
for (int i = 0; i < arraycount; i++)
{
if (attachcountbs < checkattach)
{
break;
}
if (comingstrbuilder[i].Contains(mail.Attachments[checkattach].DisplayName))
{
//}
//if (comingstrbuilder[i] == mail.Attachments[checkattach].DisplayName)
//{
sendinglink.AppendLine(comingstrbuilder[i]);
checkattach++;
}
}
if (mail.Attachments.Count == 0)
{
mail.HTMLBody = "";
}
else
{
mail.HTMLBody += "-------------Internal Use-------------<br/>";
//mail.HTMLBody += "<a href='" + Class1.test + "'>" + Class1.test + "</a>";
//mail.HTMLBody += SPForm.urlofattach.ToString();
mail.HTMLBody += sendinglink.ToString();
SPForm.urlofattach.Clear();
}
}
}
答案 0 :(得分:0)
我注意到以下代码:
Outlook.Application oApp = new Outlook.Application();
无需在ItemSend事件处理程序中创建新的Outlook Application实例。相反,您需要使用加载项类的Application属性。
Display方法接受一个布尔参数,该参数允许显示模态窗口。在这种情况下,用户应该在打开另一个检查器窗口之前关闭这些窗口。只需将true传递给方法。
单个Outlook实例也可以同时使用,因此只能有一个会话。