Residential & Commercial Construction Services

   916-624-9725

Untitled 1

Change this to your own wording - something like: 'welcome to our feedback page'

Please use this form to contact us.

ALL FIELDS ARE REQUIRED

Name
*Required

Your E-mail
*Required
Select an option
*Required

Type your message in the box below - *Required

<%@LANGUAGE = VBSCRIPT%> <%Option Explicit%> <% strMailDomain = "www.yourdomainname.com" strMailUserName = "you@yourdomainname.com" strMailPassword = "yourpassword" ' Get the form data from HTML form with 5 fields Dim name, senderEmail,subject,recipient,body name = Request.Form("name") senderEmail = Request.Form("email") subject = "Regarding " & Request.Form("subject") recipient = Request.Form("recipient") body = Request.Form("body") ' Create the JMail message Object Dim msg set msg = Server.CreateOBject( "JMail.Message" ) ' Enter the sender data msg.From = senderEmail msg.FromName = name 'Server Authentication msg.MailServerUserName = strMailUserName msg.MailServerPassWord = strMailPassword ' Note that as addRecipient is method and not ' a property, we do not use an equals ( = ) sign msg.AddRecipient "you@yourdomainname.ccom" msg.AddRecipientCC "someone@domainname.com" msg.AddRecipientBCC "somebodyelse@domainname.com" ' The subject of the message msg.Subject = subject ' And the body msg.body = body ' Now send the message, using the indicated mailserver if not msg.Send(strMailDomain) then Response.write "
" & msg.log & "
" else Response.write "Change this content to your own thank you message: Thank you for taking the time to contact us. We will review your request as soon as possible and reply accordingly" end if %>