ita-yishunss 0 Newbie Poster

CDO.Message.1 (0x80040220)
The "SendUsing" configuration value is invalid.

<%
option explicit

dim strName
dim strEmail
dim strSubject
dim strMessage

strName = request.form("txtName")
strEmail = request.form("txtEmail")
strSubject = request.form("txtSubject")
strMessage = request.form("txtMessage")

Dim ObjMail
Set ObjMail=Server.CreateObject("CDO.Message")

ObjMail.To = "address@server.com"
ObjMail.From = strEmail
ObjMail.Subject = strSubject
ObjMail.TextBody = strMessage
ObjMail.Send

set ObjMail = nothing

%>

this is the script that was use. can anyone check anything wrong with the script. I was hosting under ISS 5.1.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.