No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
> Please use the following code. > and add .dll's > Interop.Outlook.dll > Interop.Microsoft.Office.Core.dll > Office.dll protected void Button1_Click(object sender, EventArgs e) { Microsoft.Office.Interop.Outlook.Application objApp = new Microsoft.Office.Interop.Outlook.Application(); Microsoft.Office.Interop.Outlook.MailItem objMail; objMail = (Microsoft.Office.Interop.Outlook.MailItem)objApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem); objMail.To = "[email protected]; objMail.Subject = "Testmail"; objMail.BodyFormat = Microsoft.Office.Interop.Outlook.OlBodyFormat.olFormatHTML; objMail.Body = "Welcome to Outlook"; objMail.Display(Microsoft.Office.Interop.Outlook.OlBodyFormat.olFormatHTML); } > …
The End.
Seema