M
mannyGonzales
Guys,
Using .Net 1.1
I have a xml config file that list of two email address
separated by a semicolon.
<to>[email protected];[email protected]</to>
using the system.web.mail namespace
my code reads this way:
-------------------------------------
Dim omailMsg As MailMessage = New MailMessage
omailMsg.From = sfrom
omailMsg.To = sTo
smtpServer.SmtpServer = "<my server>"
smtpServer.Send(omailMsg)
--------------------------------------
i keep getting an error that says:
Could not access 'CDO.Message' object.
But having only email address works.
any ideas?
thanks
Using .Net 1.1
I have a xml config file that list of two email address
separated by a semicolon.
<to>[email protected];[email protected]</to>
using the system.web.mail namespace
my code reads this way:
-------------------------------------
Dim omailMsg As MailMessage = New MailMessage
omailMsg.From = sfrom
omailMsg.To = sTo
smtpServer.SmtpServer = "<my server>"
smtpServer.Send(omailMsg)
--------------------------------------
i keep getting an error that says:
Could not access 'CDO.Message' object.
But having only email address works.
any ideas?
thanks