Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.71K
~2K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for 1qaz2wsx7

> 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); } > …

Member Avatar for Seema
0
2K

The End.