|
|
Contact Us <%if request("Send")<>"" then%>
Thank You!
for your interest in Arabi Industrial Services &
Supplies Co.
<%end if%> Arabi Industrial Services &
Supplies Co.
P.O.Box : 4090
Safat - 13041
Kuwait
Tel: 4817878 / 77
Fax: 4811274
Email: arabico@ncc.moc.kw
<%
if request("Send")<>"" then
set mail=server.CreateObject("CDONTS.NewMail")
mail.From=request("email1")
mail.To="arabico@ncc.moc.kw"
mail.Subject=request("sub")
mail.Body=request("body1")
mail.BodyFormat = 0 ' 0 =HTML, 1 = Plain
mail.MailFormat = 1 ' 0 =MIME, 1 = Text
mail.Importance = 1 ' 0 =High, 1 = Medium, 2 = Low
'mail.attachFile("")
mail.Send
set mail=nothing
end if
%>
|