Well this is a psuedo approach.
When the form recieves a Final Submit then get the e-mial address of the person who posted the original message and use this Mail code as a start.
<% ' Email results to poster
Set Mail2 = Server.CreateObject("Persits.MailSender"
Mail2.Host = "smtp.yoursite.com" ' Specify a valid SMTP server
Mail2.From = Email_of_Poster ' Specify sender's address
Mail2.FromName = Name_of_Poster ' Specify sender's name
Mail2.Subject = "Reply form your Site"
msg = Name_of_submitter & " has posted a response to your " & Subject_of_Current_Post
Mail2.Body = msg
On Error Resume Next
Mail2.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
%>
Note: this assumes your site is using "Persists" E-mail.
I cut this code out of a submit form we are using right now its not doing exacly what you are but [sig]<p>DougP, MCP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br> Ask me how Bar-codes can help you be more productive.[/sig]
So basically you create a newmail object, add your parameters, then call the object's send method. [sig]<p>--Will Duty<br><a href=mailto:wduty@radicalfringe.com>wduty@radicalfringe.com</a><br><a href= > </a><br> [/sig]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.