Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error '80040108' for CDONTS object

Status
Not open for further replies.

longmatch

Programmer
Nov 1, 2001
406
I would like to run this program to send email to all the users I queried. Unfortunately I had the error No. 80040108. I looked up in the internet, do not have too any information. Does anybody have solution to this problem?

Thanks

Haijun


rsEmail_submitted.MoveFirst
if not rsEmail_submitted.EOF then
do while not rsEmail_submitted.eof
with mailToSubmitted
.From ="haijunw@yahoo.com"
.To = rsEmail_submitted("email")
.Subject = "none"
.Body ="thanks"
.Send
end with
rsEmail_submitted.MoveNext
Response.Write (rsEmail_submitted(&quot;email&quot;) & &quot;<br>&quot;)
loop
end if
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top