を呼び出すアプリケーションがあります
Email hello = new Email(appropriate constructor);
hello.Email_Send();
例外が発生しました:
CLSID {0006F03A-0000-0000-C000-000000000046}のコンポーネントのCOMクラスファクトリの取得は、次のエラーのために失敗しました:80080005サーバーの実行に失敗しました(HRESULTからの例外:0x80080005(CO_E_SERVER_EXEC_FAILURE))。
からSystem.Runtime.InteropServices.COMException。
using O = Microsoft.Office.Interop.Outlook;    
class Email
{
    public void Email_Send()
    {
        O.Application outlook = new O.Application(); //Exception thrown here.
        O.MailItem message = outlook.CreateItem(O.OlItemType.olMailItem);
        message.To = Receiver;
        message.CC = Sender;
        message.Subject = Subject;
        message.Body = "This is an automated message sent at " + DateTime.Now.ToString("HH:mm:ss") + " about " + Body_Topic + System.Environment.NewLine + Body_Content ;
        message.Send();
    }
}
このエラーはこれまでに発生したことはなく、私が知っているコードに変更はありません。http://support.microsoft.com/kb/825118私の症状に合わないようです-コンピュータが応答を停止しないなど。問題の診断にご協力いただければ幸いです。