Contact Us
For more information about services or booking, please fill out the form below:
<%
' ******************** ENVIA CONSULTAS **************************
if (Request("accion")= "enviaconsulta") then %>
<%
cuerpo = "----------------------------------
"
cuerpo = " Contact
"
cuerpo = "----------------------------------
"
cuerpo = cuerpo & "NAME: " & Request.Form("name") & "
"
cuerpo = cuerpo & "SURNAME: " & Request.Form("surname") & "
"
cuerpo = cuerpo & "COUNTRY: " & Request.Form("country") & "
"
cuerpo = cuerpo & "EMAIL: " & Request.Form("email") & "
"
cuerpo = cuerpo & "-----------------------------------------------------------" & "
"
cuerpo = cuerpo & Request.Form("message") & "
"
cuerpo = cuerpo & "-----------------------------------------------------------
"
cuerpo = cuerpo & "Send from TUPUNGATO HUNTING website"
Set Mailer = Server.CreateObject("Persits.MailSender")
Mailer.Host = "mail.miwebmaster.com"
Mailer.FromName = Request.Form("nombre")
Mailer.From = Request.Form("email")
Mailer.AddAddress "info@tupungatohunting.com"
'Mailer.AddAddress "ricardo@editor80.com"
Mailer.Subject = "Desde TUPUNGATO HUNTING"
Mailer.Body = cuerpo
Mailer.IsHTML = true
Mailer.Send
%>
Successful Submission! Thank you for contacting us.
<%
else
%>
<%end if
' ******************** FIN RESPUESTA **************************
%>