Not sure if this is what you want to do.
Also this is if your WEB site has Persists E-mail
<% ' 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.AddAddress "youremail@yourplace.com"
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
%>
You can switch the Mail2.From and Mail2.AddAddress around to suit your needs.
The .From is who its from and the .AddAddress is who its going to..

[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]