<% If Request.querystring("Send") <> "" Then msg_txt = "Web Sitesinden Gelen Mesaj" msg_txt = msg_txt & "

İsim: " & Request.form("FromName") msg_txt = msg_txt & "
Email: " & Request.form("From") msg_txt = msg_txt & "
Gsm Telefon: " & Request.form("Phone0") msg_txt = msg_txt & "

Mesajınız:
" & Request.form("mesaj") msg_txt = msg_txt & "
" Set Mail = Server.CreateObject("Persits.MailSender") Mail.Host = "mail.methanyapi.com" Mail.From = Request.form("From") Mail.FromName = Request.form("FromName") Mail.AddAddress "gokhan@methanyapi.com" Mail.Subject = "İletişim Formu" Mail.IsHTML = True Mail.Body = msg_txt On Error Resume Next Mail.Send If Err <> 0 Then msg = "Mesajınız Gönderilemedi.
" & Err.Description else msg = "Mesajınız Alınmıştır." End If End If %> İletişim <%If Request.querystring("Send") <> "" Then%> <%End If%>
Adı Soyadı E-Mail

Cep Telefonu Mesajınız
    
<%=msg%>