bayad aval dar yek safhe yek form besazid ke ghesmathaye
"to" , " from_email" , "subject" , " body"
dashte bashad va dar ghesmate "action" be safheye dovom ferestade
shavad. dar safheye dovom code zir ra ghara dahid.
baraye test in safhe yadetan bashad bayad on ra roye site bogzarid va
az roye systeme khod test nakonid.
bye.
<%
'Option Explicit
Dim objMail
Dim Message
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.To = request.Form("to")
objMail.From = request.Form("from_email")
objMail.Subject = request.Form("subject")
objMail.Body = request.Form("body")
objMail.Send
Set objMail = Nothing
%>