%
If Request.querystring("Send") <> "" Then
msg_txt = "Web Sitesi Iletisim Formu"
msg_txt = msg_txt & "
Isim: " & Request.form("FromName")
msg_txt = msg_txt & "
Email: " & Request.form("From")
msg_txt = msg_txt & "
Firma: " & Request.form("Firma")
msg_txt = msg_txt & "
Telefon: " & Request.form("Phone")
msg_txt = msg_txt & "
Mesajiniz:
" & Request.form("mesaj")
msg_txt = msg_txt & ""
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "mail.gureparishotel.com"
Mail.From = Request.form("From")
Mail.FromName = Request.form("FromName")
Mail.AddAddress "info@gureparishotel.com"
Mail.Subject = "Gure Paris Hotel Rezervasyon Formu"
Mail.IsHTML = True
Mail.Body = msg_txt
On Error Resume Next
Mail.Send
If Err <> 0 Then
msg = "Mesajiniz Gonderilemedi.
" & Err.Description
else
msg = "Mesajiniz Basariyla Gonderilmistir."
End If
End If
%>
|
||||||||||||||||||||||