|
|
|
|
|
| | |
|
Active Server Pages ASP programs help tutorial tutorials routine routines jobs listserve mailinglist bulletin board bulletin boards programming snippet snippets CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Reply with APS CDONTS |
From: |
Peter Radix |
Date: |
7/6/1999 9:21:09 AM |
IP: |
195.86.82.2 |
I have to follow script that i make it takes every field from the feedbackform and put that in an mail. How can i an automaticly reply?
<%
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail") %>
<%myMail.From = request.form ("mailto")
myMail.To = request.form ("mailto")
myMail.Subject = request.form ("subject")
myMail.Body = ""
for i = 1 to Request.Form.Count
cBody = cBody & Request.Form.Key(i) & ":" & Request.Form.Item(i) & Chr(13) & Chr(10)& Chr(13) & Chr(10)
cBody = cBody & FormVeld.Name & ":" & FormVeld.Value & CHR(13) & CHR(10)
Next
myMail.Body = cBody
myMail.Send
Set myMail = Nothing%>
<%=Response.Redirect ("/bedankt.htm")%>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
|
Follow Up - Re: Reply with APS CDONTS - Andy Hudson 7/28/1999 9:29:32 AM
|
|
|
|
|
|
|
|
|
|
|
|