我有一个应用程序调用
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似乎不符合我的症状 - 我的电脑没有停止响应等。任何诊断问题的帮助将不胜感激!