472,145 Members | 1,395 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,145 software developers and data experts.

asp send mail cdo error

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 = "fr**@me.com"
.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

%>

May 17 '07 #1
1 4293
Gazing into my crystal ball I observed Mike <mi**********@gmail.com>
writing in news:11*********************@n59g2000hsh.googlegro ups.com:
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.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

May 20 '07 #2

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

1 post views Thread by jam | last post: by
1 post views Thread by michi | last post: by
14 posts views Thread by Professor Yonce | last post: by
4 posts views Thread by Tony M | last post: by
5 posts views Thread by pat | last post: by
reply views Thread by Saiars | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.