0

システムで実行されているウィンドウ アプリケーションを使用して、どこからでもメールを送信できますが、アプリケーションを Outlook に統合したいと考えています。

1.送信済みメールは Outlook の送信済みメール フォルダに表示されます。2.メール送信に失敗した場合、outlookのoutboxフォルダに表示されるはずです

4

1 に答える 1

1

次のコードを実行します。

Outlook.Application oApp = new Outlook.Application();

if (this.listViewContacts.SelectedItems != null &&
this.listViewContacts.SelectedItems.Count > 0)
{
Outlook.ContactItem oRecip = (Outlook.ContactItem)
(this.listViewContacts.SelectedItems[0].Tag);

Outlook.MailItem email = (Outlook.MailItem)
(oApp.CreateItem(Outlook.OlItemType.olMailItem));
email.Recipients.Add(oRecip.Email1Address);
email.Subject = "Just wanted to say...";
email.Body = "Have a great day!";

if (MessageBox.Show(
"Are you sure you want to send a good day message to " +
oRecip.Email1DisplayName + "?", "Send?",
MessageBoxButtons.OKCancel)
== DialogResult.OK)
{
try
{
((Outlook.MailItem)email).Send();
MessageBox.Show("Email sent successfully.", "Sent");
}
catch (Exception ex)
{
MessageBox.Show("Email failed: " + ex.Message,
"Failed Send");
}
}

oRecip = null;
email = null;
}

参照リンク:

http://www.codeguru.com/csharp/csharp/cs_misc/e-mail/article.php/c14293/Microsoft-Outlook-Integration-with-CNET.htm#page-2

ステップバイステップの実装と説明は、このリンクにあります。

お役に立てば幸いです。

于 2013-05-15T04:38:42.713 に答える