使用CDO发送电子邮件

时间:2014-08-15 09:12:58

标签: c# asp.net vb.net cdo.message

我有一个数据库,其中包含收件人的电子邮件地址和标志列。如果标志是"是",则将向该用户发送邮件。我想在我的ASP.NET项目中使用CDO完成此任务。那么,这可能是做这件事的有利例程。我是CDO的新手。 我作为初学者尝试的是:

CDO.Message oMsg = new CDO.Message();
        CDO.IConfiguration iConfg;
        iConfg = oMsg.Configuration;
        ADODB.Fields oFields;
        oFields = iConfg.Fields;
        ADODB.Field oField = oFields["http://schemas.microsoft.com/cdo/configuration/sendusing"];
        oFields.Update();
        oMsg.Subject = "Test CDO";
        oMsg.From = "abc@xyz.com";
        oMsg.To = "someone@example.com";
        //oMsg.TextBody = "CDO Mail test";
        oMsg.HTMLBody = "CDO Mail test";
        oMsg.Send();
        Response.Write("Mail Sent");

但它没有帮助我我想要的东西。

0 个答案:

没有答案