C
club_obi_wan
I found a script at:
http://home.att.net/~codeLibrary/FrontPage/cdonts.htm telling how to
mass email using cdonts....only problem is the script doesnt seem to be
working, he says you need 2 pages, page 1 is the form and page 2 is the
drw, with the following code:
<%
If Request.Form("password") = "dummy" Then
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.To = fp_rs("email")
objCDOMail.From = Request.Form("from")
objCDOMail.Subject = Request.Form("subject")
objCDOMail.Body = Request.Form("body")
objCDOMail.BodyFormat = 1
objCDOMail.MailFormat = 1
objCDOMail.Send
Set objCDOMail = Nothing
End If
%>
But i cante get it to work, can anyone recommend another script? or
does anyone see an error in this one? There's more info on that link.
Rob
http://home.att.net/~codeLibrary/FrontPage/cdonts.htm telling how to
mass email using cdonts....only problem is the script doesnt seem to be
working, he says you need 2 pages, page 1 is the form and page 2 is the
drw, with the following code:
<%
If Request.Form("password") = "dummy" Then
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.To = fp_rs("email")
objCDOMail.From = Request.Form("from")
objCDOMail.Subject = Request.Form("subject")
objCDOMail.Body = Request.Form("body")
objCDOMail.BodyFormat = 1
objCDOMail.MailFormat = 1
objCDOMail.Send
Set objCDOMail = Nothing
End If
%>
But i cante get it to work, can anyone recommend another script? or
does anyone see an error in this one? There's more info on that link.
Rob