J
JJBW
Re: Could not create 'CDO.Message' object
Has anyone figured this one out yet? I too have tried all the
suggestions I can find from the newgroups and still no luck.
MailMessage mmNotify = new MailMessage();
mmNotify.From = "MyAddress";
mmNotify.To = "MyRecipient";
mmNotify.BodyFormat = MailFormat.Text;
mmNotify.Subject = "MySubject";
mmNotify.Body = "Test";
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(mmNotify);
Result -> Could not create 'CDO.Message' object
Has anyone figured this one out yet? I too have tried all the
suggestions I can find from the newgroups and still no luck.
MailMessage mmNotify = new MailMessage();
mmNotify.From = "MyAddress";
mmNotify.To = "MyRecipient";
mmNotify.BodyFormat = MailFormat.Text;
mmNotify.Subject = "MySubject";
mmNotify.Body = "Test";
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(mmNotify);
Result -> Could not create 'CDO.Message' object