23

C# コンソール アプリ内からメールを送信しようとしています。参照と using ステートメントを追加しましたが、必要なものをすべて追加していないようです。これをやろうとしたのはこれが初めてなので、何か忘れていることがあると思います。

MSDN サイトhttp://msdn.microsoft.com/en-us/library/vstudio/ms269113(v=vs.100).aspxからこのコード スニペットを取得しました。

ビルド エラーを示す VS2010 のコードのスクリーンショット

VS 2010で問題が発生しているコードは次のとおりです

using System;
using System.Configuration;
using System.IO;
using System.Net;
using System.Net.Mail;
using System.Runtime.InteropServices;
using Outlook = Microsoft.Office.Interop.Outlook;
using Office = Microsoft.Office.Core;

namespace FileOrganizer
{
    class Program
    {
        private void CreateMailItem()
        {
            //Outlook.MailItem mailItem = (Outlook.MailItem)
            // this.Application.CreateItem(Outlook.OlItemType.olMailItem);
            Outlook.Application app = new Outlook.Application();
            Outlook.MailItem mailItem = app.CreateItem(Outlook.OlItemType.olMailItem);
            mailItem.Subject = "This is the subject";
            mailItem.To = "someone@example.com";
            mailItem.Body = "This is the message.";
            mailItem.Attachments.Add(logPath);//logPath is a string holding path to the log.txt file
            mailItem.Importance = Outlook.OlImportance.olImportanceHigh;
            mailItem.Display(false);
        }
    }
}
4

3 に答える 3