添加OutLook API
using OutLook = Microsoft.Office.Interop.Outlook;
发送邮件方法
public void SendEmail()
{
OutLook.Application app = new OutLook.Application();
OutLook.NameSpace ns = app.GetNamespace("mapi");
ns.Logon("ServerName\\UserName", "Password", false, true);
OutLook.MailItem message = (OutLook.MailItem)app.CreateItem(OutLook.OlItemType.olMailItem);
message.Subject = "subject";
message.To = "account@XXX.com";
message.Body = "Hello World!";
message.Display(true);
message.Send();
ns.Logoff();
}
编译报错如下:
方法“Microsoft.Office.Interop.Outlook._MailItem.Send()”和非方法“Microsoft.Office.Interop.Outlook.ItemEvents_10_Event.Send”之间存在二义性。将使用方法组。
将上述代码片段中的第6行修改成如下:
OutLook._MailItem message = (OutLook.MailItem)app.CreateItem(OutLook.OlItemType.olMailItem);
问题解决!