embedded-image

How to extract embedded images from a draft Outlook email - and reconstruct for sending via System.Net.Mail.SmtpClient

I have an Outlook email (in HTML format) that's been saved as a draft. I want to programmatically extract the embedded images (not the attachments - that's easy!), save them somewhere, and then reconstruct the emails programatically for sending via a System.Net.Mail.SmtpClient. I can get at the HTML easily enough. I can also extract t...