To send mail using ASP on the server-side is trivially easy:
<%
Dim cdonts
Set cdonts = Server.CreateObject("CDONTS.NewMail")
Call cdonts.Send("from@domain.com","to@domain.com", "this is a subject", "this is a body", 1)
Set cdonts = Nothing
%>
It is very easy to create a form around this code. Since the "to@domain.com"
would only appear server-side, it is protected from viewing by the surfer.
|