VSTO (visual studio 2010) を使用して Outlook 2010 用のアドインを開発しています。私はメール アイテムを扱っていて、新しい電子メール プロパティを取得し、新しい電子メールの送信中にいくつかの条件下でいくつかの作業を行いたいと考えsubject
ています。しかし、、、、、、 ... などのいくつかのプロパティを取得できませんでした .... 以下は、使用したコードです。body
To
CC
BCC
Category
"From"
Attachment (have or not)
attachment size and name
checked as high importance or not
checked as sensitivity or not
request delivery
request read recipt
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
Application.ItemSend+=new Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);
}
void Application_ItemSend(object Item, ref bool Cancel)
{
Outlook.Recipient recipient = null;
Outlook.Recipients recipients = null;
Outlook.MailItem mail = Item as Outlook.MailItem;
string selectedAccount= ?????
}
後者のプロパティを取得するにはどうすればよいですか?