I have a message as an MHT-File. Now I am searching for a way to set this for a mail to send through Exchange Server (with Exchange Web Service). When I set it as a MIME-Content, the parts (picture and text) will be attached as attachments (JPEG file and HTML file). But I need a way to set the whole MHT as a body with all containing objects.

The following is attaching the MHT as attachments. What is wrong?

EmailMessage message = new EmailMessage(service);
message.MimeContent = new MimeContent { Content = File.ReadAllBytes(bodyPath) };
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I have it solved now with the Component for Exchange WebService programming from Indepenendent-Soft.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.