I have the following C# code to launch an outlook window. The one think i want to add it to have certain part of the text bold and italics. how would i do that through this API?
Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.MailItem oMsg = (Microsoft.Office.Interop.Outlook.MailItem)oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);
Microsoft.Office.Interop.Outlook.Recipient oRecip;
oMsg.Subject = "Autogenerated Daily Report for: " + DateTime.Now.Date.AddDays(-1).ToString("MMM dd");
oMsg.Body = message;
oRecip = (Microsoft.Office.Interop.Outlook.Recipient)oMsg.Recipients.Add("[email protected]");
oRecip.Resolve();
oMsg.Display(true);
oRecip = null;
oMsg = null;
oApp = null;