在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
添加OutLook API 1 using OutLook = Microsoft.Office.Interop.Outlook;
发送邮件方法 1 public void SendEmail()
2 {
3 OutLook.Application app = new OutLook.Application();
4 OutLook.NameSpace ns = app.GetNamespace("mapi");
5 ns.Logon("ServerName\\UserName", "Password", false, true);
6 OutLook.MailItem message = (OutLook.MailItem)app.CreateItem(OutLook.OlItemType.olMailItem);
7 message.Subject = "subject";
8 message.To = "account@XXX.com";
9 message.Body = "Hello World!";
10 message.Display(true);
11 message.Send();
12 ns.Logoff();
13 }
编译报错如下:
将上述代码片段中的第6行修改成如下: 1 OutLook._MailItem message = (OutLook.MailItem)app.CreateItem(OutLook.OlItemType.olMailItem);
问题解决! |
请发表评论