%@LANGUAGE="VBSCRIPT"%> <% if request("action")="click to send" then Set Mail = Server.CreateObject("Persits.MailSender") 'Mail.Host = "203.121.182.210" Mail.Host = "203.121.182.210" Mail.From = "info@royalnaturalspa.com" 'Mail.From = request("email") 'Mail.FromName = "The Royal Natural Spa" Mail.FromName = request("name") 'Mail.FromName = request("Email") Mail.AddAddress "info@royalnaturalspa.com" 'Mail.AddAddress "nachai@yahoo.com" 'Mail.AddReplyTo request("Email") Mail.Subject = "Contact us : The Royal Natural Spa" Mail.IsHTML = True str=""&chr(13)&chr(10) str=str&"
| "&chr(13)&chr(10)
str=str&"Here is the contact. " & chr(13)&chr(10) str=str&"Name : "&request("Name")& chr(13)&chr(10) str=str&" Address : "&request("Address")& chr(13)&chr(10) str=str&" Email : "&request("Email")& chr(13)&chr(10) str=str&" Message : "&chr(13)&chr(10) str=str&request("Message")& chr(13)&chr(10) str=str&" "&chr(13)&chr(10) str=str&" |