[thelist] Form Processing

thelist at cjmarsh.com thelist at cjmarsh.com
Mon Apr 11 18:17:09 CDT 2005


Dena

[..]

> The form is a simple email contact form.  It collects name, 
> email address 
> and has a message field.  I did google the question and
> have been looking for about two hours.
> 
> Perhaps there is reputable free form processing out there?  Or some 
> other option.

<%
If Request.Form.Count > 1 Then

   Dim strEmail
   Dim strName
   Dim strMessage
   Dim oMail

   strEmail = Request.Form("email")
   strName = Request.Form("name")
   strMessage = Request.Form("message")

   Set oMail = Server.CreateObject("CDONTS.NewMail")
   With oMail
      .From = strEmail
      .To = "your at email.com"
      .Subject = "Website Email Form"
      .Body = strMessage
      .Send()
   End With
   Set oMail = Nothing

End If
%>

Try something like this. It's untested, but should be fundamentally
sound.

Regards

Chris Marsh

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.9.6 - Release Date: 11/04/2005
 



More information about the thelist mailing list