Our locations: Washington Court House, OH Home of our production facility and design department
Grove City, OH Home of our sales and accounting departments
Primary contacts : All postal mail should be sent to:
3800 Broadway Grove City, OH 43123 Telephone: + 1 866-570-7446
FAX: + 1 740-636-1604
E-mail: info@amasignco.com
<%
if request.form("btn_submit") <> "" then
'declare variables
dim obj_mail, str_body
'create mail object
set obj_mail = server.createobject("persits.mailsender")
'set properities
obj_mail.host = "mail.amasignco.com"
obj_mail.from = request.form("txt_email")
obj_mail.fromname = request.form("txt_name")
obj_mail.addaddress "jault@amasignco.com"
obj_mail.subject = "Website From Submission"
str_body = "Name: " & request.form("txt_name") & vbnewline
str_body = str_body & "Email: " & request.form("txt_email") & vbnewline
str_body = str_body & "Phone: " & request.form("txt_phone") & vbnewline
str_body = str_body & "Reason for Contact: " & request.form("sel_reason") & vbnewline
str_body = str_body & "Message: " & request.form("txt_message")
obj_mail.body = str_body
'send email
obj_mail.send
with response
.write ""
'return error number or true
if err <> 0 then
.write "Error sending your message. Please try again. "
else
.write "Your message has been sent. "
end if
.write "
"
end with
'response.write err 'COMMENT OUT FOR PRODUCTION
end if
%>