%
If Request.querystring("Send") <> "" Then
msg_txt = "Incoming Testimonial"
msg_txt = msg_txt & "
Name-Surname: " & Request.form("FromName")
msg_txt = msg_txt & "
E-mail: " & Request.form("From")
msg_txt = msg_txt & "
Testimonial:
" & Request.form("mesaj")
msg_txt = msg_txt & ""
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "mail.tac-alumni.org"
Mail.From = Request.form("From")
Mail.FromName = Request.form("FromName")
Mail.AddAddress "tugla@tac-alumni.org"
Mail.Subject = "a new testimonial"
Mail.IsHTML = True
Mail.Body = msg_txt
On Error Resume Next
Mail.Send
If Err <> 0 Then
msg = "Unable to send. Please fill all the blanks and try again.
" & Err.Description
else
msg = "Yout testimonial is send. Thanks for your interest."
End If
End If
%>