Hello everyone....
I would like to convert some code from CDO to System.net.mail. In particular, I need to Embed an entire web page (included images) into the email. In CDO, it was done like this:
objSMTP = CreateObject("CDO.Message")
objSMTP.CreateMHTMLBody("http://www.microsoft.com", 0)
Is there a way to do this with System.Net.Mail.Message?
Thanks!
Forch