Send already generated MHTML using CDOSYS through C#?

Posted by mutex on Stack Overflow See other posts from Stack Overflow or by mutex
Published on 2010-06-07T22:46:24Z Indexed on 2010/06/07 22:52 UTC
Read the original article Hit count: 319

Filed under:
|
|
|

I have a ready generated MHTML as a byte array (from Aspose.Words) and would like to send it as an email. I'm trying to do this through CDOSYS, though am open to other suggestions. For now though I have the following:

        CDO.Message oMsg = new CDO.Message();
        CDO.IConfiguration iConfg = oMsg.Configuration;
        Fields oFields = iConfg.Fields;

        // Set configuration.
        Field oField = oFields["http://schemas.microsoft.com/cdo/configuration/sendusing"];
        oField.Value = CDO.CdoSendUsing.cdoSendUsingPort;
        oField = oFields["http://schemas.microsoft.com/cdo/configuration/smtpserver"];
        oField.Value = SmtpClient.Host;
        oField = oFields["http://schemas.microsoft.com/cdo/configuration/smtpserverport"];
        oField.Value = SmtpClient.Port;
        oFields.Update();

        //oMsg.CreateMHTMLBody("http://www.microsoft.com", CDO.CdoMHTMLFlags.cdoSuppressNone,  "", "");
        // NEED MAGIC HERE :)
        oMsg.Subject = warning.Subject;             // string

        oMsg.From = "[email protected]";
        oMsg.To = warning.EmailAddress;
        oMsg.Send();

In this snippet, the warning variable has a Body property which is a byte[]. Where it says "NEED MAGIC HERE" in the code above I want to use this byte[] to set the body of the CDO Message.

I have tried the following, which unsurprisingly doesn't work:

oMsg.HTMLBody = System.Text.Encoding.ASCII.GetString(warning.Body);

Anybody have any ideas how I can achieve what I want with CDOSYS or something else?

© Stack Overflow or respective owner

Related posts about c#

Related posts about email