博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Use Outlook to send email

Posted on 2006-06-15 21:34  LeeCheng  阅读(278)  评论(0编辑  收藏  举报

Microsoft.Office.Interop.Outlook.Application  app = new Microsoft.Office.Interop.Outlook.Application();
NameSpace ns = app.GetNamespace("mapi");
ns.Logon("", "", false , true); 
MailItem message = (MailItem)app.CreateItem(OlItemType.olMailItem);
message.To = toAddress;
message.Subject = subject;
message.HTMLBody = mailBody;
message.Send();
ns.Logoff();