Sending mhtml emails - C#
.net, c#, email, mhtml
Solution
I use plain old native `MailMessage` class. This previous answer can point you in right direction
EDIT: I built a similiar code some time ago, which captures an external HTML page, parse it's content, grab all external content (css, images, etc) and to send that through email, without saving anything on disk.
Problem
I have a requirement to send emails containing both text and Images. So, I have .mhtml file that contains the content that needs to be emailed over. I was using Chilkat for this, but in outlook 2007 it is showing the mhtml file as different attachments(html+images). Can anyone suggest me some other component for sending mhtml emails. FYI, I am using .Net 3.5 Also, I do not want to save the images on server before sending them. Thank you!