0

VSTO (visual studio 2010) を使用して Outlook 2010 用のアドインを開発しています。私はメール アイテムを扱っていて、新しい電子メール プロパティを取得し、新しい電子メールの送信中にいくつかの条件下でいくつかの作業を行いたいと考えsubjectています。しかし、、、、、、 ... などのいくつかのプロパティを取得できませんでした .... 以下は、使用したコードです。bodyToCCBCCCategory"From"Attachment (have or not)attachment size and namechecked as high importance or notchecked as sensitivity or notrequest deliveryrequest 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= ?????
        }

後者のプロパティを取得するにはどうすればよいですか?

4

1 に答える 1

1

送信者名は、メッセージが送信されて [送信済みアイテム] フォルダーに移動された後にのみ設定されます。送信者関連のプロパティに最も早くアクセスできるのは、送信済みアイテム フォルダーで Items.ItemAdd イベントが発生したときです。

添付ファイルにアクセスするには、MailItem.Attachments コレクションを使用します。

アカウント - MailItem.SendUsingAccount プロパティを使用します。

Sensitivity、OriginatorDeliveryReportRequested、ReadReceiptRequested プロパティの問題は何ですか?

于 2013-06-21T02:00:13.503 に答える