Vs2010 を使用しています -> 拡張性 -> 共有アドイン ItemSend にイベント ハンドラーを追加しました
applicationObject.ItemSend += new Outlook.ApplicationEvents_11_ItemSendEventHandler(applicationObject_ItemSend);
void applicationObject_ItemSend(object Item, ref bool Cancel)
{
if(Item is Outlook.MailItem)
{
Outlook.MailItem mailItem = Item as Outlook.MailItem;
if (mailItem != null)
{
MessageBox.Show("Sender's Email Address "+mailItem.SenderEmailAddress);
MessageBox.Show("Sender's Email Address "+mailItem.SentOnBehalfOfName);
MessageBox.Show("Sender's Email Address "+mailItem.SendUsingAccount);
}
}
}
mailItem.SenderEmailAddress,mailItem.SentOnBehalfOfName
そして、mailItem.SendUsingAccount
私はこのプロパティをすべてnullにしています
どなたか助けてください。差出人を取得したいのですが、差出人のSentOnBehalfOfName
アカウント名がメールで送信されました。