asp send mail cdo error

M

Mike

I patched lastnight. My cdo send email code worked until this AM.
The code has been working for months on my 2003 web server relaying to
my exchange 2003 server. I now get

error '80040211'
/Ricweb/standards/testemail.asp, line 35


Anyone have any information?







My code
<%
sch = "http://schemas.microsoft.com/cdo/configuration/"

Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "my mail server"
.update
End With

Set cdoMessage = CreateObject("CDO.Message")

With cdoMessage
Set .Configuration = cdoConfig
.From = "(e-mail address removed)"
.To = "my correct email address"
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With

Set cdoMessage = Nothing
Set cdoConfig = Nothing

%>
 
A

Adrienne Boswell

I patched lastnight. My cdo send email code worked until this AM.
The code has been working for months on my 2003 web server relaying to
my exchange 2003 server. I now get

error '80040211'
/Ricweb/standards/testemail.asp, line 35

Google for the error and you might find an answer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

CDO Message help 1
CDOSYS send email with ASP 9
CDO yahoogroups mail problem 0
Send form data using CDO 3
CDO Error 3
CDO authentication problem 2
CDO Email Help 2
CDO generating duplicate e-mails 0

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top