我有一个方法可以将Outlook打开为默认的电子邮件应用程序,但问题是不应该使用每个填充的邮件信息提示“撰写新窗口”。
public void SentEmail()
{
string strTo = "abc@gmail.com";
string strSubject = "Outlook Automation";
Outlook.Application app =new Outlook.Application();
Outlook.MailItem mItem = app.CreateItem(Outlook.OlItemType.olMailItem);
mItem.To = strTo;
mItem.Subject = strSubject;
mItem.BodyFormat = Outlook.OlBodyFormat.olFormatHTML;
mItem.HTMLBody = "<div>Hello</div>";
}
有人帮我解决这个问题吗?
答案 0 :(得分:0)
这里:http://csharp.net-informations.com/communications/csharp-smtp-mail.htm你有很好的C#电子邮件发送示例。