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();