Click here to Skip to main content
15,884,177 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
My email form worked correctly in the past, but starting of today this error message is displayed after the form is submitted and no email is sent:

error '80070008'
/ho/ewdisp000.asp, line 378


This is how the messages were sent:

VB
 <%

Set Mail = CreateObject("CDO.Message")   // line 378
Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") ="smtp.gmail.com"
Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465

Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = 1

Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60

Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") ="xxx@domain.com"
Mail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="password"

Mail.Configuration.Fields.Update

Mail.Subject= "Subject"
Mail.From="xxx@domain.com"
Mail.To="xxx@domain.com" 
Mail.TextBody="Thank you for your feedback"  
Mail.Send 
Set Mail = Nothing

%>
Posted

1 solution

Refer- Windows Update error 80070008 or 8007000e[^].

It might help you. :)
 
Share this answer
 
Comments
waris kantroo 23-Dec-13 6:26am    
First off thank you for reviewing my question.I already checked this link. It didn't help.
Okay, then I would suggest you to ask a question to Microsoft Support team.
waris kantroo 23-Dec-13 6:30am    
Thank you for the suggestion.
Most Welcome. :)

Please accept this answer, if it has helped you in any way.
This will help others to find the answer in one go and you will also be awarded with some points for this action...

Thanks,
Tadit

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900