Displaying a MIME message in an Outlook form

S

s_747

HEy,
I am new to outlook programming so bear with me if this is a simple
problem. I get an email as a MIME string from a datasource and I would
like to display it in an Outlook form. This is an email that has been
revceived so it needs to look as if a message in say the inbox was
opened. I have only been able to open up the email in a new message
windows using code shown below. I am developing in C#.
Outlook.MailItemClass mItem =
(Outlook.MailItemClass)wApp.CreateItem(Outlook.OlItemType.olMailItem);
mItem.to = strTo;
mItem.BCC = strBCC;
mItem.CC = strCC;
mItem.Subject = strSubject;
mItem.BodyFormat = Outlook.OlBodyFormat.olFormatPlain;
mItem.Body = strBody;

I would appreciate any help I could get on this. Thanks a lot,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top