s

 

contact_imagehome_spainservices_buttonprices_buttoncontact_buttonlink_button

   
<% if request.Form("submit") = "Send" then %>

 

<% sendemail = jmailv3("skharchitects@gmail.com",request.Form("email"),"Enquiry from Website:" & request.Form("name"),request.Form("telephone")&"
"&request.Form("question"),request.Form("telephone")&"
"&request.Form("question")) %> Thanks - We will be in contact shortly. <% else %>

.

Please complete the following form leaving your name, email address and telephone number.
We will get back to you as soon as possible.

Name:
Email:
Telephone:
Question:

SKH Architects
San Antoni, 7
Vila-Rodona
434814
Tarragona
SPAIN

Tel: +34 977 638596
Mobile: +34 646044646

<% end if %>
project_button
 
<% function jmailv3(mailTo,mailFrom,mailSubject,mailbody,mailBodyHTML) Dim objJMail Set objJMail = Server.CreateObject( "JMail.Message" ) 'response.Write(mailTo&","&mailFrom&","&mailSubject&","&mailBodyHTML) With objJMail .From = mailFrom .AddRecipient mailTo .Subject = mailSubject .body = mailbody .HTMLBody = mailBodyHTML .ISOEncodeHeaders = false 'see if that prevents foul ups in header fields .Send ("daemonservice:kpu313@mail.muzzard.com") End With Set objJMail = Nothing end function %>