I have same problem. My ISP shows the solution to send a mail via web but I couldn't rearrange these codes for Web Wiz. These are the codes which My ISP suggested to use sending mail via web. Can you help me how can I use this knowledge?
<%
On Error Resume Next
Set smtp = Server.CreateObject("JMail.Message")
For Each veri In Request.Form
msg = msg & veri & ": " & Request.Form(veri) & "<br>"
Next
smtp.ContentType = "text/html"
smtp.Charset = "ISO-8859-9"
smtp.AddRecipient "alacakmail@hismail.com"
smtp.from = yollayanmail@myweb.com
smtp.fromname = "Web Form"
smtp.MailServerUserName = "admin@myweb.org"
smtp.MailServerPassWord = "password"
smtp.Subject = "Title"
smtp.body = msg
smtp.Send("mail.vargonen.com")
if err then
response.Write err.Description & "<br>Error Message"
else
Response.Redirect("http://yonelenecek.com/sayfa")
end if
set smtp = Nothing
%>