when attempting to send an email from a webpage using the below code, I am now prompted with an error message which reads:
CDO.Message.1 error '80040220'
The "SendUsing" configuration value is invalid.
/customer_locator/send_email.asp, line 15
This has not occurred before and there was no coding change done to this webpage. Line 15 of this page reads:
myMail.Send
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Canada Chair"
myMail.From="info@CanChair.com"
If Request.Form("Email") <>"" Then
myMail.To=Request.Form("Email")
Else
myMail.To=Session("SoldToEmail")
End If
'myMail.Cc="info@chairstables.com"
myMail.CreateMHTMLBody "myMail.Send
set myMail=nothing
%>
CDO.Message.1 error '80040220'
The "SendUsing" configuration value is invalid.
/customer_locator/send_email.asp, line 15
This has not occurred before and there was no coding change done to this webpage. Line 15 of this page reads:
myMail.Send
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Canada Chair"
myMail.From="info@CanChair.com"
If Request.Form("Email") <>"" Then
myMail.To=Request.Form("Email")
Else
myMail.To=Session("SoldToEmail")
End If
'myMail.Cc="info@chairstables.com"
myMail.CreateMHTMLBody "myMail.Send
set myMail=nothing
%>