|
-
March 15th, 2005, 07:00 AM
#1
Problem with Outlook.OlBodyFormat.olFormatRichText
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.
-
December 1st, 2006, 02:23 PM
#2
Re: Problem with Outlook.OlBodyFormat.olFormatRichText
I have the same problem. Can you help me?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|