Click to See Complete Forum and Search --> : Problem with Outlook.OlBodyFormat.olFormatRichText


vonkrc
March 15th, 2005, 06:00 AM
hello!

I have problem with setting RTF e-mail body format.
In my app I have a richTextBox control, and I want to set email body content from this richTextBox.

My source code looks like this:

...

Outlook.MailItem oMsg = (Outlook.MailItem)oApp.CreateItem(Outlook.OlItemType.olMailItem);

oMsg.BodyFormat = Outlook.OlBodyFormat.olFormatRichText;
oMsg.Body = richTextBoxEmailContent.Rtf;

Outlook.MAPIFolder oOutBox = oNS.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderOutbox);

oMsg.Move( oOutBox );

...

But in Outlook outbox folder this email is saving with all RTF tags in content.
Did Someone know what I have to do?

Please help me.

daniel94ever
December 1st, 2006, 01:23 PM
I have the same problem. Can you help me?